File tree Expand file tree Collapse file tree 2 files changed +19
-3
lines changed Expand file tree Collapse file tree 2 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ async function main() {
232
232
// install with "ignore-scripts" so that we don't attempt to download a prebuild
233
233
await run ( 'npm' , [ 'install' , '--ignore-scripts' ] ) ;
234
234
// The prebuild command will make both a .node file in `./build` (local and CI testing will run on current code)
235
- // it will also produce `./prebuild/xx.tgz`. prebuild has GH upload functionality .
235
+ // it will also produce `./prebuilds/mongodb-client-encryption-vVERSION-napi-vNAPI_VERSION-OS-ARCH.tar.gz` .
236
236
await run ( 'npm' , [ 'run' , 'prebuild' ] ) ;
237
237
}
238
238
Original file line number Diff line number Diff line change @@ -9,8 +9,6 @@ name: build
9
9
10
10
jobs :
11
11
macos_windows_builds :
12
- outputs :
13
- artifact_id : ${{ steps.upload.outputs.artifact-id }}
14
12
strategy :
15
13
matrix :
16
14
os : [macos-11, macos-latest, windows-2019]
55
53
path : prebuilds/
56
54
if-no-files-found : ' error'
57
55
retention-days : 1
56
+
57
+ collect :
58
+ needs : [linux_builds, macos_windows_builds]
59
+ runs-on : ubunutu-latest
60
+ steps :
61
+ - uses : actions/download-artifact@v4
62
+
63
+ - name : Display structure of downloaded files
64
+ run : ls -R
65
+
66
+ - id : upload
67
+ name : Upload all prebuilds
68
+ uses : actions/upload-artifact@v4
69
+ with :
70
+ name : all-build
71
+ path : *.tar.gz
72
+ if-no-files-found : ' error'
73
+ retention-days : 1
You can’t perform that action at this time.
0 commit comments