We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac9fece commit 71a6f08Copy full SHA for 71a6f08
.github/workflows/main.yml
@@ -85,6 +85,14 @@ jobs:
85
run: |
86
./ci/vendor-wit.sh
87
git diff --exit-code
88
- - run: cargo install wit-bindgen-cli@0.45.0 --locked
+ - run: |
89
+ version=0.45.1
90
+
91
+ mkdir wit-bindgen
92
+ cd wit-bindgen
93
+ curl -o wit-bindgen.tar.gz -L https://github.com/bytecodealliance/wit-bindgen/releases/download/v$version/wit-bindgen-$version-x86_64-linux.tar.gz
94
+ tar xf wit-bindgen.tar.gz
95
+ echo "PATH=$PATH:`pwd`/wit-bindgen-$version-x86_64-linux" >> $GITHUB_ENV
96
+ working-directory: ${{ runner.tool_cache }}
97
- run: ./ci/regenerate.sh
98
- run: git diff --exit-code
0 commit comments