From d5a9dcb11cbf1b06d180877121008cdac8076d51 Mon Sep 17 00:00:00 2001 From: chris Date: Fri, 12 Jan 2024 13:07:09 +0100 Subject: [PATCH] feat(contentDeploy): install repo if latest app image fails --- .github/workflows/build-content.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build-content.yml b/.github/workflows/build-content.yml index 0c6fc2f80..7826d2170 100644 --- a/.github/workflows/build-content.yml +++ b/.github/workflows/build-content.yml @@ -51,6 +51,10 @@ jobs: run: npx playwright install --with-deps chromium - run: ./docker.sh --appFromImage && mv ./a2j-app/* ./ + continue-on-error: true + - if: failure() + run: npm ci + - name: Run Playwright e2e tests env: GERICHTSFINDER_ENCRYPTION_KEY: "${{ secrets.GERICHTSFINDER_ENCRYPTION_KEY }}"