From 9cdec4837515e45f56dd2cac7c1b154891b6d49d Mon Sep 17 00:00:00 2001 From: Garath620 Date: Fri, 17 Nov 2023 10:25:17 +0100 Subject: [PATCH] Fix push expression in deploy_docker-image.yml Signed-off-by: Garath620 --- .github/workflows/deploy_docker-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy_docker-image.yml b/.github/workflows/deploy_docker-image.yml index 65ded2b19b..db51c1af4c 100644 --- a/.github/workflows/deploy_docker-image.yml +++ b/.github/workflows/deploy_docker-image.yml @@ -61,7 +61,7 @@ jobs: with: context: './example-app' file: ./example-app/packages/backend/Dockerfile - push: ${{ github.event_name == "repository_dispatch" && github.event.action == "release-published" }} + push: ${{ (github.event_name == "repository_dispatch") && (github.event.action == "release-published") }} platforms: linux/amd64,linux/arm64 tags: | ghcr.io/${{ github.repository_owner }}/backstage:latest