From f7f9107b258a77c4bc079f062207f8cf83f74d26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20P=C3=B6schl?= Date: Tue, 3 Sep 2024 23:13:36 +0200 Subject: [PATCH] :green_heart: Fix image builds --- .github/workflows/dev-backend-release.yaml | 3 ++- .github/workflows/dev-frontend-release.yaml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev-backend-release.yaml b/.github/workflows/dev-backend-release.yaml index 1273e07..9fa84fd 100644 --- a/.github/workflows/dev-backend-release.yaml +++ b/.github/workflows/dev-backend-release.yaml @@ -84,9 +84,10 @@ jobs: id: build-image uses: redhat-actions/buildah-build@v2 with: + containerfiles: backend/Dockerfile + context: backend tags: ${{ steps.docker-meta.outputs.tags }} labels: ${{ steps.docker-meta.outputs.labels }} - containerfiles: backend/Dockerfile platforms: linux/amd64,linux/arm64 # Disable layer caching layers: false diff --git a/.github/workflows/dev-frontend-release.yaml b/.github/workflows/dev-frontend-release.yaml index 6f535ce..3392de3 100644 --- a/.github/workflows/dev-frontend-release.yaml +++ b/.github/workflows/dev-frontend-release.yaml @@ -92,9 +92,10 @@ jobs: id: build-image uses: redhat-actions/buildah-build@v2 with: + containerfiles: frontend/docker/Dockerfile + context: frontend tags: ${{ steps.docker-meta.outputs.tags }} labels: ${{ steps.docker-meta.outputs.labels }} - containerfiles: backend/Dockerfile platforms: linux/amd64,linux/arm64 # Disable layer caching layers: false