From f55ece18189bed83adf614475158d49a3c45c93b Mon Sep 17 00:00:00 2001 From: resonic-user Date: Mon, 16 Jun 2025 10:51:09 +0000 Subject: [PATCH] v --- .github/workflows/cache-verify.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/cache-verify.yml b/.github/workflows/cache-verify.yml index 6616d259e..ce9a22056 100644 --- a/.github/workflows/cache-verify.yml +++ b/.github/workflows/cache-verify.yml @@ -7,6 +7,25 @@ on: workflow_dispatch: jobs: + build-backend-image: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: docker/setup-buildx-action@v3 + - name: Build backend image + uses: docker/build-push-action@v5 + with: + context: ./backend + file: ./backend/Dockerfile + target: build + push: false + outputs: type=docker,dest=/tmp/backend.tar + - name: Upload backend image + uses: actions/upload-artifact@v4 + with: + name: backend-image + path: /tmp/backend.tar + verify-summary: runs-on: ubuntu-latest needs: [verify-cache, verify-backend, verify-webapp]