diff --git a/.forgejo/workflows/eval.yaml b/.forgejo/workflows/eval.yaml index 90c06e0..9bca986 100644 --- a/.forgejo/workflows/eval.yaml +++ b/.forgejo/workflows/eval.yaml @@ -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