unfiltered action.
All checks were successful
Docker / publish (pull_request) Successful in 4m31s

This commit is contained in:
jmug
2026-03-04 14:55:44 -08:00
parent 952a92ba1b
commit ee91016ee3

View File

@@ -2,6 +2,9 @@ name: Docker
on:
push:
pull_request:
branches:
- "handmade"
jobs:
publish:
@@ -26,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 }}
@@ -34,7 +37,7 @@ jobs:
uses: docker/build-push-action@v6
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
push: true # ${{ github.event_name != 'pull_request' }}
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
annotations: ${{ steps.meta.outputs.annotations }}