fix(action): update for install script improvements and v2.0.1#13
Merged
ricochet merged 5 commits intowasmCloud:mainfrom Mar 31, 2026
Merged
fix(action): update for install script improvements and v2.0.1#13ricochet merged 5 commits intowasmCloud:mainfrom
ricochet merged 5 commits intowasmCloud:mainfrom
Conversation
Signed-off-by: Eric Gregory <[email protected]>
Signed-off-by: Eric Gregory <[email protected]>
…l copy The install scripts now default to ~/.wash/bin, so the action must explicitly set INSTALL_DIR to the tool cache path. This replaces the previous pattern of installing to cwd and then copying the binary into the cache directory. Signed-off-by: Eric Gregory <[email protected]>
Signed-off-by: Eric Gregory <[email protected]>
Signed-off-by: Eric Gregory <[email protected]>
ricochet
approved these changes
Mar 31, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updates the action to work with the improved install scripts and bumps the default wash version to v2.0.1. Depends on wasmCloud/wasmCloud#5006.
What changed
Default version: Bumped to
v2.0.1.Install step simplification: The install scripts now default to
~/.wash/bininstead of the current working directory. The action setsINSTALL_DIRdirectly to the tool cache path via environment variable, so the binary lands in the right place immediately. This removes the previous pattern of installing tocwdand then copying the binary into the cache:Profile patching is automatically skipped in CI (
$CI=trueis set by GitHub Actions), so no--no-modify-pathflag is needed.