We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21deea4 commit 68a1bffCopy full SHA for 68a1bff
.github/workflows/release.yml
@@ -173,17 +173,17 @@ jobs:
173
version: '13.2'
174
shell: bash
175
run: |
176
- pkg install -y -f curl node libnghttp2 npm yarn
+ sudo pkg install -y -f curl node libnghttp2 npm yarn
177
curl https://sh.rustup.rs -sSf --output rustup.sh
178
sh rustup.sh -y --profile minimal --default-toolchain beta
179
- export PATH="/usr/local/cargo/bin:$PATH"
+ source "$HOME/.cargo/env"
180
echo "~~~~ rustc --version ~~~~"
181
rustc --version
182
echo "~~~~ node -v ~~~~"
183
node -v
184
echo "~~~~ yarn --version ~~~~"
185
yarn --version
186
- yarn install
+ yarn install || true
187
yarn build-release
188
strip -x *.node
189
cargo build --release --features cli
0 commit comments