Skip to content

Commit 8ccb907

Browse files
committed
Fixed CI uploading binaries from QEMU builds
- we didn't run a `yarn` on the QEMU builds so `node-pre-gyp-github` didn't exist to upload the binaries
1 parent 73da410 commit 8ccb907

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
retention-days: 7
138138

139139
- name: Upload binaries to GitHub Release
140-
run: yarn node-pre-gyp-github publish
140+
run: yarn install --ignore-scripts && yarn node-pre-gyp-github publish
141141
if: matrix.node == 16 && startsWith(github.ref, 'refs/tags/')
142142
env:
143143
NODE_PRE_GYP_GITHUB_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)