From eaa2c81df326be84a7d4ca0dc3c61a5ddd70695c Mon Sep 17 00:00:00 2001 From: Anthony Stirling <77850077+Frooodle@users.noreply.github.com> Date: Sun, 5 Feb 2023 22:33:45 +0000 Subject: [PATCH] Update push-docker.yml --- .github/workflows/push-docker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/push-docker.yml b/.github/workflows/push-docker.yml index 5e3c4efc8..a3cd28752 100644 --- a/.github/workflows/push-docker.yml +++ b/.github/workflows/push-docker.yml @@ -60,13 +60,13 @@ jobs: docker buildx use mybuilder - name: Build and push versioned amd64 and v8 - if: github.ref == 'refs/heads/main' and env.JOB_END_EARLY != true + if: github.ref == 'refs/heads/main' && env.JOB_END_EARLY != true run: | docker buildx build --platform="linux/amd64,linux/arm64/v8" --push --tag "frooodle/s-pdf:${{ steps.versionNumber.outputs.versionNumber }}" . - name: Build and push latest amd64 and v8 - if: github.ref == 'refs/heads/master' and env.JOB_END_EARLY != true + if: github.ref == 'refs/heads/master' && env.JOB_END_EARLY != true run: | docker buildx build --platform="linux/amd64,linux/arm64/v8" --push --tag "frooodle/s-pdf:latest" .