We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edd02fb commit 410bc4cCopy full SHA for 410bc4c
1 file changed
.github/workflows/build-node-fibers.yml
@@ -31,14 +31,16 @@ jobs:
31
steps:
32
- name: Download Node archive
33
run: |
34
- gh release download node-${{ env.NODE_VERSION }}-release --repo asana/node --pattern "node-*.tar.xz"
+ 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"
37
env:
38
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39
40
- name: Extract Node archive
41
42
mkdir -p node-install
- 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
44
echo "$GITHUB_WORKSPACE/node-install/usr/local/bin" >> $GITHUB_PATH
45
46
- name: Checkout node-fibers fork
0 commit comments