We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
tar
unzip
bsc
1 parent dca0a5c commit 9d83645Copy full SHA for 9d83645
1 file changed
.github/workflows/ci.yaml
@@ -48,10 +48,12 @@ jobs:
48
- shell: bash
49
name: Install bsc
50
run: |
51
- curl -o bsc.tar.gz -sL "https://github.com/B-Lang-org/bsc/releases/download/${{ env.BSC_VERSION }}/bsc-${{ env.BSC_VERSION }}-ubuntu-22.04.tar.gz"
52
- unzip -o bsc.tar.gz
53
- rm bsc.tar.gz
54
- echo "$PWD/bsc/bin" >> $GITHUB_PATH
+ wget "https://github.com/B-Lang-org/bsc/releases/download/${{ env.BSC_VERSION }}/$BSC_DIR.tar.gz"
+ tar -xzf $BSC_DIR.tar.gz
+ rm $BSC_DIR.tar.gz
+ echo "$PWD/$BSC_DIR/bin" >> $GITHUB_PATH
55
+ env:
56
+ BSC_DIR: "bsc-${{ env.BSC_VERSION }}-ubuntu-22.04"
57
58
59
name: Update
0 commit comments