From fc3f9bca2dff836b0e924a993bdf11bc51af78d4 Mon Sep 17 00:00:00 2001 From: Duologic Date: Thu, 17 Jun 2021 15:22:26 +0200 Subject: [PATCH] fix: correctly set the push directive --- .github/workflows/docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 493c93a..7c94ba7 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -49,7 +49,7 @@ jobs: uses: docker/build-push-action@v2 with: context: . - push: ${{ github.event_name != 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository }} + push: ${{ github.event_name != 'pull_request' && github.repository == 'jsonnet-libs/docsonnet' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} -