From f860edc2d95adac684ca1e86903e3fe16983510b Mon Sep 17 00:00:00 2001 From: "Matt, Matthias" Date: Mon, 8 Jul 2024 17:10:29 +0200 Subject: [PATCH] Fix push condition in ci.yml for docker build/push action --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 576a76c..54171cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,6 +80,6 @@ jobs: context: . file: ${{ matrix.dockerfile }} platforms: linux/amd64,linux/arm64 - push: ${{ github.event_name == 'pull_request' }} + push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file