98
98
id : artifact-name
99
99
run : echo "::set-output name=name::astar-ubuntu-latest-${TARGET%%-*}"
100
100
101
- - uses : actions/upload-artifact@v4
101
+ - uses : actions/upload-artifact@v3
102
102
with :
103
103
name : ${{ steps.artifact-name.outputs.name }}
104
104
path : target/${{ matrix.target }}/release/astar-collator
@@ -131,7 +131,7 @@ jobs:
131
131
- name : Build optimized binary with evm tracing
132
132
run : CARGO_PROFILE_RELEASE_LTO=true RUSTFLAGS="-C codegen-units=1" cargo build --release --target x86_64-unknown-linux-gnu --features evm-tracing --verbose --locked
133
133
134
- - uses : actions/upload-artifact@v4
134
+ - uses : actions/upload-artifact@v3
135
135
with :
136
136
name : astar-evm-tracing-ubuntu-latest-x86_64-unknown-linux-gnu
137
137
path : target/x86_64-unknown-linux-gnu/release/astar-collator
@@ -142,17 +142,17 @@ jobs:
142
142
mv target/x86_64-unknown-linux-gnu/release/wbuild/shiden-runtime/shiden_runtime.compact.compressed.wasm target/x86_64-unknown-linux-gnu/release/wbuild/shiden-runtime/shiden_evm_tracing_runtime.compact.compressed.wasm
143
143
mv target/x86_64-unknown-linux-gnu/release/wbuild/shibuya-runtime/shibuya_runtime.compact.compressed.wasm target/x86_64-unknown-linux-gnu/release/wbuild/shibuya-runtime/shibuya_evm_tracing_runtime.compact.compressed.wasm
144
144
145
- - uses : actions/upload-artifact@v4
145
+ - uses : actions/upload-artifact@v3
146
146
with :
147
147
name : astar-evm-tracing-runtime
148
148
path : target/x86_64-unknown-linux-gnu/release/wbuild/astar-runtime/astar_evm_tracing_runtime.compact.compressed.wasm
149
149
150
- - uses : actions/upload-artifact@v4
150
+ - uses : actions/upload-artifact@v3
151
151
with :
152
152
name : shiden-evm-tracing-runtime
153
153
path : target/x86_64-unknown-linux-gnu/release/wbuild/shiden-runtime/shiden_evm_tracing_runtime.compact.compressed.wasm
154
154
155
- - uses : actions/upload-artifact@v4
155
+ - uses : actions/upload-artifact@v3
156
156
with :
157
157
name : shibuya-evm-tracing-runtime
158
158
path : target/x86_64-unknown-linux-gnu/release/wbuild/shibuya-runtime/shibuya_evm_tracing_runtime.compact.compressed.wasm
@@ -196,7 +196,7 @@ jobs:
196
196
- name : Show sccache stats
197
197
run : sccache --show-stats
198
198
199
- - uses : actions/upload-artifact@v4
199
+ - uses : actions/upload-artifact@v3
200
200
with :
201
201
name : astar-macOS-latest-x86_64
202
202
path : target/release/astar-collator
@@ -228,7 +228,7 @@ jobs:
228
228
tag-sha : true # add git short SHA as Docker tag
229
229
230
230
- name : Download pre-built linux collator binary
231
- uses : actions/download-artifact@v4
231
+ uses : actions/download-artifact@v3
232
232
with :
233
233
name : astar-ubuntu-latest-x86_64
234
234
@@ -273,7 +273,7 @@ jobs:
273
273
274
274
# it takes a while to build the runtime, so let's save the artifact as soon as we have it
275
275
- name : Archive Artifacts for ${{ matrix.chain }}
276
- uses : actions/upload-artifact@v4
276
+ uses : actions/upload-artifact@v3
277
277
with :
278
278
name : ${{ matrix.chain }}-runtime
279
279
path : |
@@ -311,7 +311,7 @@ jobs:
311
311
tee ${{ matrix.chain }}-diff.txt
312
312
313
313
- name : Archive Subwasm results
314
- uses : actions/upload-artifact@v4
314
+ uses : actions/upload-artifact@v3
315
315
with :
316
316
name : ${{ matrix.chain }}-runtime
317
317
path : |
@@ -332,19 +332,19 @@ jobs:
332
332
fetch-depth : 0
333
333
334
334
- name : Download astar runtime
335
- uses : actions/download-artifact@v4
335
+ uses : actions/download-artifact@v3
336
336
with :
337
337
name : astar-runtime
338
338
path : runtime-artifacts
339
339
340
340
- name : Download shiden runtime
341
- uses : actions/download-artifact@v4
341
+ uses : actions/download-artifact@v3
342
342
with :
343
343
name : shiden-runtime
344
344
path : runtime-artifacts
345
345
346
346
- name : Download shibuya runtime
347
- uses : actions/download-artifact@v4
347
+ uses : actions/download-artifact@v3
348
348
with :
349
349
name : shibuya-runtime
350
350
path : runtime-artifacts
@@ -398,7 +398,7 @@ jobs:
398
398
mkdir -p ubuntu-tracing-bin
399
399
400
400
- name : Download pre-built collator binary
401
- uses : actions/download-artifact@v4
401
+ uses : actions/download-artifact@v3
402
402
with :
403
403
name : astar-${{ matrix.os }}-latest-${{ matrix.arch }}
404
404
path : ${{ matrix.os }}-${{ matrix.arch }}-bin
@@ -427,7 +427,7 @@ jobs:
427
427
chain : ["astar", "shiden", "shibuya"]
428
428
steps :
429
429
- name : Download runtime
430
- uses : actions/download-artifact@v4
430
+ uses : actions/download-artifact@v3
431
431
with :
432
432
name : ${{ matrix.chain }}-runtime
433
433
@@ -491,25 +491,25 @@ jobs:
491
491
runs-on : ubuntu-latest
492
492
steps :
493
493
- name : Download pre-built collator binary for evm tracing
494
- uses : actions/download-artifact@v4
494
+ uses : actions/download-artifact@v3
495
495
with :
496
496
name : astar-evm-tracing-ubuntu-latest-x86_64-unknown-linux-gnu
497
497
path : evm-tracing-artifacts
498
498
499
499
- name : Download evm tracing runtime
500
- uses : actions/download-artifact@v4
500
+ uses : actions/download-artifact@v3
501
501
with :
502
502
name : astar-evm-tracing-runtime
503
503
path : evm-tracing-artifacts
504
504
505
505
- name : Download evm tracing runtime
506
- uses : actions/download-artifact@v4
506
+ uses : actions/download-artifact@v3
507
507
with :
508
508
name : shiden-evm-tracing-runtime
509
509
path : evm-tracing-artifacts
510
-
510
+
511
511
- name : Download evm tracing runtime
512
- uses : actions/download-artifact@v4
512
+ uses : actions/download-artifact@v3
513
513
with :
514
514
name : shibuya-evm-tracing-runtime
515
515
path : evm-tracing-artifacts
@@ -548,7 +548,7 @@ jobs:
548
548
uses : actions/checkout@v4
549
549
550
550
- name : Download pre-built collator binary
551
- uses : actions/download-artifact@v4
551
+ uses : actions/download-artifact@v3
552
552
with :
553
553
name : astar-ubuntu-latest-x86_64
554
554
path : target/release
0 commit comments