From ab81ac90265d26e48e79327a2ce7023e24a60190 Mon Sep 17 00:00:00 2001 From: resonic-user Date: Tue, 17 Jun 2025 17:51:20 +0000 Subject: [PATCH] v --- .github/workflows/cache-verify.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/cache-verify.yml b/.github/workflows/cache-verify.yml index ac4ac6dd5..e20c48d52 100644 --- a/.github/workflows/cache-verify.yml +++ b/.github/workflows/cache-verify.yml @@ -14,7 +14,24 @@ jobs: with: reporter: github-check level: warning + prepare-env: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Generate .env files + run: | + cp backend/.env.test_e2e backend/.env + cp webapp/.env.template webapp/.env + - name: Upload .env artifacts + uses: actions/upload-artifact@v4 + with: + name: env-files + path: | + backend/.env + webapp/.env + build-images: + needs: prepare-env runs-on: ubuntu-latest strategy: matrix: @@ -53,6 +70,7 @@ jobs: path: /tmp/${{ matrix.name }}.tar cache-environment: + needs: prepare-env runs-on: ubuntu-latest outputs: cache-key: ${{ steps.cache-key.outputs.key }}