fix(CI): Upload artifact for all machines
Some checks failed
build configuration / build_vault01 (push) Successful in 2m36s
build configuration / build_web02 (push) Successful in 2m37s
build configuration / build_storage01 (push) Successful in 2m49s
lint / check (push) Successful in 35s
build configuration / build_web01 (push) Successful in 3m26s
build configuration / build_compute01 (push) Successful in 3m32s
build configuration / build_geo01 (push) Successful in 1m29s
build configuration / build_geo02 (push) Successful in 1m29s
build configuration / build_rescue01 (push) Successful in 1m35s
build configuration / push_to_cache_web02 (push) Successful in 1m33s
build configuration / push_to_cache_storage01 (push) Successful in 1m40s
build configuration / push_to_cache_geo01 (push) Successful in 1m32s
build configuration / push_to_cache_rescue01 (push) Has been cancelled
build configuration / push_to_cache_compute01 (push) Has been cancelled
build configuration / push_to_cache_web01 (push) Has been cancelled
build configuration / push_to_cache_geo02 (push) Has been cancelled
Some checks failed
build configuration / build_vault01 (push) Successful in 2m36s
build configuration / build_web02 (push) Successful in 2m37s
build configuration / build_storage01 (push) Successful in 2m49s
lint / check (push) Successful in 35s
build configuration / build_web01 (push) Successful in 3m26s
build configuration / build_compute01 (push) Successful in 3m32s
build configuration / build_geo01 (push) Successful in 1m29s
build configuration / build_geo02 (push) Successful in 1m29s
build configuration / build_rescue01 (push) Successful in 1m35s
build configuration / push_to_cache_web02 (push) Successful in 1m33s
build configuration / push_to_cache_storage01 (push) Successful in 1m40s
build configuration / push_to_cache_geo01 (push) Successful in 1m32s
build configuration / push_to_cache_rescue01 (push) Has been cancelled
build configuration / push_to_cache_compute01 (push) Has been cancelled
build configuration / push_to_cache_web01 (push) Has been cancelled
build configuration / push_to_cache_geo02 (push) Has been cancelled
This commit is contained in:
parent
d566336d5e
commit
18175ad4ab
1 changed files with 30 additions and 0 deletions
|
@ -146,6 +146,12 @@ jobs:
|
|||
STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }}
|
||||
NODES: '[ "rescue01" ]'
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
if: always()
|
||||
with:
|
||||
name: outputs_rescue01
|
||||
path: uploaded.txt
|
||||
|
||||
push_to_cache_geo01:
|
||||
runs-on: nix
|
||||
needs:
|
||||
|
@ -161,6 +167,12 @@ jobs:
|
|||
STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }}
|
||||
NODES: '[ "geo01" ]'
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
if: always()
|
||||
with:
|
||||
name: outputs_geo01
|
||||
path: uploaded.txt
|
||||
|
||||
push_to_cache_geo02:
|
||||
runs-on: nix
|
||||
needs:
|
||||
|
@ -176,6 +188,12 @@ jobs:
|
|||
STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }}
|
||||
NODES: '[ "geo02" ]'
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
if: always()
|
||||
with:
|
||||
name: outputs_geo02
|
||||
path: uploaded.txt
|
||||
|
||||
push_to_cache_web01:
|
||||
runs-on: nix
|
||||
needs:
|
||||
|
@ -191,6 +209,12 @@ jobs:
|
|||
STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }}
|
||||
NODES: '[ "web01" ]'
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
if: always()
|
||||
with:
|
||||
name: outputs_web01
|
||||
path: uploaded.txt
|
||||
|
||||
push_to_cache_web02:
|
||||
runs-on: nix
|
||||
needs:
|
||||
|
@ -205,3 +229,9 @@ jobs:
|
|||
STORE_USER: "admin"
|
||||
STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }}
|
||||
NODES: '[ "web02" ]'
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
if: always()
|
||||
with:
|
||||
name: outputs_web02
|
||||
path: uploaded.txt
|
||||
|
|
Loading…
Reference in a new issue