Skip to content

Commit ec8ea66

Browse files
author
Brynley Llewellyn-Roux
committed
fix: force prebuild folder name
1 parent 831e718 commit ec8ea66

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/native-library-js-tag.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
RUST_BACKTRACE: "1"
7171
script: |
7272
nix develop .#ci --command bash -c $'
73-
npm run prebuild --verbose -- --production
73+
npm run prebuild --verbose -- --production --output=prebuild
7474
npm test -- --ci --coverage
7575
npm run bench
7676
'
@@ -87,7 +87,7 @@ jobs:
8787
refreshenv
8888
npm install --ignore-scripts
8989
$env:Path = "$(npm root)\.bin;" + $env:Path
90-
npm run prebuild --verbose -- --production
90+
npm run prebuild --verbose -- --production --output=prebuild
9191
npm test -- --ci --coverage
9292
npm run bench
9393
- platform: macos
@@ -102,8 +102,8 @@ jobs:
102102
npm install --ignore-scripts
103103
export PATH="$(npm root)/.bin:$PATH"
104104
export PATH="$HOME/.cargo/bin:$PATH"
105-
npm run prebuild --verbose -- --arch x64 --production
106-
npm run prebuild --verbose -- --arch arm64 --production
105+
npm run prebuild --verbose -- --arch x64 --production --output=prebuild
106+
npm run prebuild --verbose -- --arch arm64 --production --output=prebuild
107107
lipo -create -output prebuild/quic-darwin-x64+arm64.node prebuild/quic-darwin-arm64.node prebuild/quic-darwin-x64.node
108108
rm -rf node_modules/@matrixai/quic-*
109109
npm test -- --ci --coverage

0 commit comments

Comments
 (0)