48
48
if : ${{ matrix.strip }}
49
49
run : ${{ matrix.strip }} *.node ${{ matrix.binary }}
50
50
- name : Upload artifacts
51
- uses : actions/upload-artifact@v3
51
+ uses : actions/upload-artifact@v4
52
52
with :
53
53
name : bindings-${{ matrix.target }}
54
54
path : |
90
90
- name : Strip debug symbols # https://github.com/rust-lang/rust/issues/46034
91
91
run : strip -x *.node lightningcss
92
92
- name : Upload artifacts
93
- uses : actions/upload-artifact@v3
93
+ uses : actions/upload-artifact@v4
94
94
with :
95
95
name : bindings-aarch64-apple-darwin
96
96
path : |
@@ -153,7 +153,7 @@ jobs:
153
153
if : ${{ matrix.strip }}
154
154
run : ${{ matrix.strip }} *.node lightningcss
155
155
- name : Upload artifacts
156
- uses : actions/upload-artifact@v3
156
+ uses : actions/upload-artifact@v4
157
157
with :
158
158
name : bindings-${{ matrix.target }}
159
159
path : |
@@ -201,7 +201,7 @@ jobs:
201
201
rm -rf .yarn/cache
202
202
203
203
- name : Upload artifacts
204
- uses : actions/upload-artifact@v3
204
+ uses : actions/upload-artifact@v4
205
205
with :
206
206
name : bindings-x86_64-unknown-freebsd
207
207
path : |
@@ -232,7 +232,7 @@ jobs:
232
232
export PATH="$PATH:./binaryen-version_111/bin"
233
233
yarn wasm:build-release
234
234
- name : Upload artifacts
235
- uses : actions/upload-artifact@v3
235
+ uses : actions/upload-artifact@v4
236
236
with :
237
237
name : wasm
238
238
path : wasm/lightningcss_node.wasm
@@ -250,9 +250,12 @@ jobs:
250
250
- uses : actions/checkout@v3
251
251
-
uses :
bahmutov/[email protected]
252
252
- name : Download artifacts
253
- uses : actions/download-artifact@v3
253
+ uses : actions/download-artifact@v4
254
254
with :
255
255
path : artifacts
256
+ merge-multiple : true
257
+ - name : Show artifacts
258
+ run : ls -R artifacts
256
259
- name : Build npm packages
257
260
run : |
258
261
node scripts/build-npm.js
0 commit comments