Skip to content

Commit 410bc4c

Browse files
debug
1 parent edd02fb commit 410bc4c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build-node-fibers.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)