From 84b84a31fa3243d071b4353e9da34b56a0008160 Mon Sep 17 00:00:00 2001 From: jmug Date: Fri, 6 Mar 2026 11:52:24 -0800 Subject: [PATCH] [chore] Revert PR publising. --- .github/workflows/docker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 45f5fd9a..5c9a3f7f 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -2,6 +2,8 @@ name: Docker on: push: + branches: + - "handmade" pull_request: branches: - "handmade" @@ -9,8 +11,6 @@ on: jobs: publish: runs-on: ubuntu-latest - # NOTE: Running on pull requests for now, but without pushing. - # if: github.event_name != 'pull_request' steps: - name: Checkout uses: actions/checkout@v4 @@ -29,7 +29,7 @@ jobs: DOCKER_METADATA_ANNOTATIONS_LEVELS: manifest,index - name: Login to DockerHub uses: docker/login-action@v1 - # if: github.event_name != 'pull_request' + if: github.event_name != 'pull_request' with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} @@ -37,7 +37,7 @@ jobs: uses: docker/build-push-action@v6 with: context: . - push: true # ${{ github.event_name != 'pull_request' }} + push: ${{ github.event_name != 'pull_request' }} platforms: linux/amd64,linux/arm64 tags: ${{ steps.meta.outputs.tags }} annotations: ${{ steps.meta.outputs.annotations }}