forked from DGNum/infrastructure
fix(CI): Upload artifact for all machines
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 }}
|
STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }}
|
||||||
NODES: '[ "rescue01" ]'
|
NODES: '[ "rescue01" ]'
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
if: always()
|
||||||
|
with:
|
||||||
|
name: outputs_rescue01
|
||||||
|
path: uploaded.txt
|
||||||
|
|
||||||
push_to_cache_geo01:
|
push_to_cache_geo01:
|
||||||
runs-on: nix
|
runs-on: nix
|
||||||
needs:
|
needs:
|
||||||
|
@ -161,6 +167,12 @@ jobs:
|
||||||
STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }}
|
STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }}
|
||||||
NODES: '[ "geo01" ]'
|
NODES: '[ "geo01" ]'
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
if: always()
|
||||||
|
with:
|
||||||
|
name: outputs_geo01
|
||||||
|
path: uploaded.txt
|
||||||
|
|
||||||
push_to_cache_geo02:
|
push_to_cache_geo02:
|
||||||
runs-on: nix
|
runs-on: nix
|
||||||
needs:
|
needs:
|
||||||
|
@ -176,6 +188,12 @@ jobs:
|
||||||
STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }}
|
STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }}
|
||||||
NODES: '[ "geo02" ]'
|
NODES: '[ "geo02" ]'
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
if: always()
|
||||||
|
with:
|
||||||
|
name: outputs_geo02
|
||||||
|
path: uploaded.txt
|
||||||
|
|
||||||
push_to_cache_web01:
|
push_to_cache_web01:
|
||||||
runs-on: nix
|
runs-on: nix
|
||||||
needs:
|
needs:
|
||||||
|
@ -191,6 +209,12 @@ jobs:
|
||||||
STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }}
|
STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }}
|
||||||
NODES: '[ "web01" ]'
|
NODES: '[ "web01" ]'
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
if: always()
|
||||||
|
with:
|
||||||
|
name: outputs_web01
|
||||||
|
path: uploaded.txt
|
||||||
|
|
||||||
push_to_cache_web02:
|
push_to_cache_web02:
|
||||||
runs-on: nix
|
runs-on: nix
|
||||||
needs:
|
needs:
|
||||||
|
@ -205,3 +229,9 @@ jobs:
|
||||||
STORE_USER: "admin"
|
STORE_USER: "admin"
|
||||||
STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }}
|
STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }}
|
||||||
NODES: '[ "web02" ]'
|
NODES: '[ "web02" ]'
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
if: always()
|
||||||
|
with:
|
||||||
|
name: outputs_web02
|
||||||
|
path: uploaded.txt
|
||||||
|
|
Loading…
Reference in a new issue