60
60
run : |
61
61
docker run -e VERSION=${{ steps.get_version.outputs.VERSION }} -v $GITHUB_WORKSPACE/build:/build deb_build
62
62
cp build/secretnetwork_${{ steps.get_version.outputs.VERSION }}_amd64.deb secretnetwork_${{ steps.get_version.outputs.VERSION }}_testnet_${{ matrix.db_backend }}_amd64_ubuntu-22.04.deb
63
- - uses : actions/upload-artifact@v3
63
+ - uses : actions/upload-artifact@v4
64
64
with :
65
65
name : secretnetwork_${{ steps.get_version.outputs.VERSION }}_testnet_${{ matrix.db_backend }}_amd64_ubuntu-22.04.deb
66
66
path : secretnetwork_${{ steps.get_version.outputs.VERSION }}_testnet_${{ matrix.db_backend }}_amd64_ubuntu-22.04.deb
@@ -114,7 +114,7 @@ jobs:
114
114
run : |
115
115
docker run -e VERSION=${{ steps.get_version.outputs.VERSION }} -v $GITHUB_WORKSPACE/build:/build deb_build
116
116
cp build/secretnetwork_${{ steps.get_version.outputs.VERSION }}_amd64.deb secretnetwork_${{ steps.get_version.outputs.VERSION }}_testnet_${{ matrix.db_backend }}_amd64_ubuntu-20.04.deb
117
- - uses : actions/upload-artifact@v3
117
+ - uses : actions/upload-artifact@v4
118
118
with :
119
119
name : secretnetwork_${{ steps.get_version.outputs.VERSION }}_testnet_${{ matrix.db_backend }}_amd64_ubuntu-20.04.deb
120
120
path : secretnetwork_${{ steps.get_version.outputs.VERSION }}_testnet_${{ matrix.db_backend }}_amd64_ubuntu-20.04.deb
@@ -191,7 +191,7 @@ jobs:
191
191
run : |
192
192
docker run -e VERSION=${{ steps.get_version.outputs.VERSION }} -v $GITHUB_WORKSPACE/build:/build deb_build
193
193
cp build/secretnetwork_${{ steps.get_version.outputs.VERSION }}_amd64.deb secretnetwork_${{ steps.get_version.outputs.VERSION }}_mainnet_${{ matrix.db_backend }}_amd64_ubuntu-20.04.deb
194
- - uses : actions/upload-artifact@v3
194
+ - uses : actions/upload-artifact@v4
195
195
with :
196
196
name : secretnetwork_${{ steps.get_version.outputs.VERSION }}_mainnet_${{ matrix.db_backend }}_amd64_ubuntu-20.04.deb
197
197
path : secretnetwork_${{ steps.get_version.outputs.VERSION }}_mainnet_${{ matrix.db_backend }}_amd64_ubuntu-20.04.deb
@@ -268,7 +268,7 @@ jobs:
268
268
run : |
269
269
docker run -e VERSION=${{ steps.get_version.outputs.VERSION }} -v $GITHUB_WORKSPACE/build:/build deb_build
270
270
cp build/secretnetwork_${{ steps.get_version.outputs.VERSION }}_amd64.deb secretnetwork_${{ steps.get_version.outputs.VERSION }}_mainnet_${{ matrix.db_backend }}_amd64_ubuntu-22.04.deb
271
- - uses : actions/upload-artifact@v3
271
+ - uses : actions/upload-artifact@v4
272
272
with :
273
273
name : secretnetwork_${{ steps.get_version.outputs.VERSION }}_mainnet_${{ matrix.db_backend }}_amd64_ubuntu-22.04.deb
274
274
path : secretnetwork_${{ steps.get_version.outputs.VERSION }}_mainnet_${{ matrix.db_backend }}_amd64_ubuntu-22.04.deb
@@ -288,7 +288,7 @@ jobs:
288
288
run : |
289
289
SGX_MODE=SW make build_cli
290
290
cp "secretcli" "secretcli-$RUNNER_OS"
291
- - uses : actions/upload-artifact@v3
291
+ - uses : actions/upload-artifact@v4
292
292
with :
293
293
name : secretcli-${{runner.os}}
294
294
path : secretcli-${{runner.os}}
@@ -305,7 +305,7 @@ jobs:
305
305
run : |
306
306
SGX_MODE=SW make build_cli
307
307
cp "secretcli" "secretcli-Ubuntu-20.04"
308
- - uses : actions/upload-artifact@v3
308
+ - uses : actions/upload-artifact@v4
309
309
with :
310
310
name : secretcli-Ubuntu-20.04
311
311
path : secretcli-Ubuntu-20.04
@@ -328,7 +328,7 @@ jobs:
328
328
run : |
329
329
SGX_MODE=SW make build_cli
330
330
cp "secretcli" "secretcli-MacOS-arm64"
331
- - uses : actions/upload-artifact@v3
331
+ - uses : actions/upload-artifact@v4
332
332
with :
333
333
name : secretcli-MacOS-arm64
334
334
path : secretcli-MacOS-arm64
@@ -366,7 +366,7 @@ jobs:
366
366
docker run -e VERSION=${{ steps.get_version.outputs.VERSION }} -v $GITHUB_WORKSPACE/build:/build check_hw_tool_build
367
367
cp build/check_hw_${{ steps.get_version.outputs.VERSION }}.tar.gz check_hw_${{ steps.get_version.outputs.VERSION }}_ubuntu-22.04.tar.gz
368
368
369
- - uses : actions/upload-artifact@v3
369
+ - uses : actions/upload-artifact@v4
370
370
with :
371
371
name : check_hw_${{ steps.get_version.outputs.VERSION }}_ubuntu-22.04.tar.gz
372
372
path : check_hw_${{ steps.get_version.outputs.VERSION }}_ubuntu-22.04.tar.gz
@@ -404,7 +404,7 @@ jobs:
404
404
docker run -e VERSION=${{ steps.get_version.outputs.VERSION }} -v $GITHUB_WORKSPACE/build:/build check_hw_tool_build
405
405
cp build/check_hw_${{ steps.get_version.outputs.VERSION }}.tar.gz check_hw_${{ steps.get_version.outputs.VERSION }}_ubuntu-20.04.tar.gz
406
406
407
- - uses : actions/upload-artifact@v3
407
+ - uses : actions/upload-artifact@v4
408
408
with :
409
409
name : check_hw_${{ steps.get_version.outputs.VERSION }}_ubuntu-20.04.tar.gz
410
410
path : check_hw_${{ steps.get_version.outputs.VERSION }}_ubuntu-20.04.tar.gz
@@ -481,40 +481,40 @@ jobs:
481
481
- name : Get the version
482
482
id : get_version
483
483
run : echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/}
484
- - uses : actions/download-artifact@v3
484
+ - uses : actions/download-artifact@v4
485
485
with :
486
486
name : secretcli-Linux
487
- - uses : actions/download-artifact@v3
487
+ - uses : actions/download-artifact@v4
488
488
with :
489
489
name : secretcli-macOS
490
- - uses : actions/download-artifact@v3
490
+ - uses : actions/download-artifact@v4
491
491
with :
492
492
name : secretcli-Windows
493
- - uses : actions/download-artifact@v3
493
+ - uses : actions/download-artifact@v4
494
494
with :
495
495
name : secretcli-MacOS-arm64
496
- - uses : actions/download-artifact@v3
496
+ - uses : actions/download-artifact@v4
497
497
with :
498
498
name : secretcli-Ubuntu-20.04
499
- - uses : actions/download-artifact@v3
499
+ - uses : actions/download-artifact@v4
500
500
with :
501
501
name : secretnetwork_${{ steps.get_version.outputs.VERSION }}_mainnet_goleveldb_amd64_ubuntu-20.04.deb
502
- - uses : actions/download-artifact@v3
502
+ - uses : actions/download-artifact@v4
503
503
with :
504
504
name : secretnetwork_${{ steps.get_version.outputs.VERSION }}_mainnet_goleveldb_amd64_ubuntu-22.04.deb
505
- - uses : actions/download-artifact@v3
505
+ - uses : actions/download-artifact@v4
506
506
with :
507
507
name : secretnetwork_${{ steps.get_version.outputs.VERSION }}_testnet_goleveldb_amd64_ubuntu-20.04.deb
508
- - uses : actions/download-artifact@v3
508
+ - uses : actions/download-artifact@v4
509
509
with :
510
510
name : secretnetwork_${{ steps.get_version.outputs.VERSION }}_testnet_goleveldb_amd64_ubuntu-22.04.deb
511
- - uses : actions/download-artifact@v3
511
+ - uses : actions/download-artifact@v4
512
512
with :
513
513
name : check_hw_${{ steps.get_version.outputs.VERSION }}_ubuntu-22.04.tar.gz
514
- - uses : actions/download-artifact@v3
514
+ - uses : actions/download-artifact@v4
515
515
with :
516
516
name : check_hw_${{ steps.get_version.outputs.VERSION }}_ubuntu-20.04.tar.gz
517
- # - uses: actions/download-artifact@v3
517
+ # - uses: actions/download-artifact@v4
518
518
# with:
519
519
# name: check_hw_${{ steps.get_version.outputs.VERSION }}_mainnet.tar.gz
520
520
- name : Release
0 commit comments