File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -31,14 +31,16 @@ jobs:
3131 steps :
3232 - name : Download Node archive
3333 run : |
34- gh release download node-${{ env.NODE_VERSION }}-release --repo asana/node --pattern "node-*.tar.xz"
34+ gh release download node-${{ env.NODE_VERSION }}-release \
35+ --repo asana/node \
36+ --pattern "node-${{ env.NODE_VERSION }}-${{ matrix.platform }}-${{ matrix.arch }}-LATEST.tar.xz"
3537 env :
3638 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3739
3840 - name : Extract Node archive
3941 run : |
4042 mkdir -p node-install
41- tar -C node-install -xJf node-* .tar.xz
43+ tar -C node-install -xJf node-${{ env.NODE_VERSION }}-${{ matrix.platform }}-${{ matrix.arch }}-LATEST .tar.xz
4244 echo "$GITHUB_WORKSPACE/node-install/usr/local/bin" >> $GITHUB_PATH
4345
4446 - name : Checkout node-fibers fork
You can’t perform that action at this time.
0 commit comments