From 8dc64bb4dec34665f78b90c2177a545a7c904af9 Mon Sep 17 00:00:00 2001 From: James Hodgkinson Date: Mon, 27 May 2024 12:00:05 +1000 Subject: [PATCH] fixing container build workflow (#551) --- .github/workflows/build_container.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_container.yml b/.github/workflows/build_container.yml index 4b325b9d..eb4f3c52 100644 --- a/.github/workflows/build_container.yml +++ b/.github/workflows/build_container.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - # https://github.com/docker/login-action/#github-container-registry + - # https://github.com/docker/login-action/#github-container-registry name: Login to GitHub Container Registry uses: docker/login-action@v3 with: @@ -62,7 +62,6 @@ jobs: platforms: linux/amd64,linux/arm64 context: . tags: ghcr.io/yaleman/goatns:latest - push: ${{ github.ref == 'refs/heads/main' }} + push: ${{ github.ref == 'refs/heads/main' }} cache-from: type=gha build-args: GITHUB_SHA=${GITHUB_SHA} - if: github.event.pull_request.merged == true