From b1a6c5245feb06fb0851b70eafd3b7bea2a3fe90 Mon Sep 17 00:00:00 2001 From: Adrian Dvergsdal Date: Fri, 17 Jul 2020 01:04:42 +0200 Subject: [PATCH] Fix push condition --- .github/workflows/docker-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index e91168d..9da214f 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -28,7 +28,7 @@ jobs: run: tests/run push: - if: ${{ github.event_name == "push" && github.ref == "master" }} + if: github.event_name == "push" && github.ref == "refs/heads/master" needs: test runs-on: ubuntu-latest