Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 11 additions & 12 deletions .github/workflows/call-docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ on:
- main
# don't rebuild image if someone only edited unrelated files
paths-ignore:
- 'README.md'
- '.github/linters/**'
- "README.md"
- ".github/linters/**"
pull_request:
# don't rebuild image if someone only edited unrelated files
paths-ignore:
- 'README.md'
- '.github/linters/**'
- "README.md"
- ".github/linters/**"

# cancel any previously-started, yet still active runs of this workflow on the same branch
concurrency:
Expand All @@ -40,15 +40,14 @@ jobs:
contents: read
packages: write # needed to push docker image to ghcr.io
pull-requests: write # needed to create and update comments in PRs
# secrets:

# secrets:
# Only needed if with:dockerhub-enable is true below
# https://hub.docker.com/settings/security
# dockerhub-username: ${{ secrets.DOCKERHUB_USERNAME }}
# dockerhub-token: ${{ secrets.DOCKERHUB_TOKEN }}

# Only needed if with:dockerhub-enable is true below
# https://hub.docker.com/settings/security
# dockerhub-username: ${{ secrets.DOCKERHUB_USERNAME }}
# dockerhub-token: ${{ secrets.DOCKERHUB_TOKEN }}

with:
# with:
# NOTE: there are lots of input options for this reusable workflow
# read the comments in the inputs area of the reusable workflow for more info
# https://github.com/BretFisher/docker-build-workflow/blob/main/.github/workflows/reusable-docker-build.yaml
Expand All @@ -74,6 +73,6 @@ jobs:

# platforms are *native GitHub Runners by default, so only amd64 and/or arm64 are supported, and must be in JSON syntax.
# for more platform build options, there's a "QEMU" reusable workflow option in this repo's .github/workflows folder
platforms: '["linux/amd64", "linux/arm64"]'
# platforms: '["linux/amd64", "linux/arm64"]'

# comment-enable: true
Loading