From cc611cd05efa227d46b95a6c495d0b27599b9207 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Pav=C3=B3n=20Abi=C3=A1n?= Date: Fri, 25 Oct 2024 16:17:45 +0200 Subject: [PATCH] Fix: Fixed workflows that generate Docker images --- .github/workflows/docker-publish-dev.yml | 2 -- .github/workflows/docker-publish-pro.yml | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/docker-publish-dev.yml b/.github/workflows/docker-publish-dev.yml index 26c2919..b23376e 100644 --- a/.github/workflows/docker-publish-dev.yml +++ b/.github/workflows/docker-publish-dev.yml @@ -65,8 +65,6 @@ jobs: with: # Context is the root directory context: . - # Use the development Dockerfile - dockerfile: Dockerfile # Set platforms for multi-architecture builds platforms: linux/amd64,linux/arm64 # Push the image unless it's a pull request diff --git a/.github/workflows/docker-publish-pro.yml b/.github/workflows/docker-publish-pro.yml index 6d21b64..d24bb78 100644 --- a/.github/workflows/docker-publish-pro.yml +++ b/.github/workflows/docker-publish-pro.yml @@ -67,7 +67,7 @@ jobs: # Context is the root directory context: . # Use the production Dockerfile - dockerfile: dockerfile.prod + file: Dockerfile: dockerfile.prod # Set platforms for multi-architecture builds platforms: linux/amd64,linux/arm64 # Push the image unless it's a pull request