diff --git a/.github/workflows/call-docker-build.yaml b/.github/workflows/call-docker-build.yaml index 9eda05e..2692dd1 100644 --- a/.github/workflows/call-docker-build.yaml +++ b/.github/workflows/call-docker-build.yaml @@ -33,21 +33,23 @@ jobs: uses: conradwt/docker-build-workflow/.github/workflows/reusable-docker-build-native.yaml@main # set permissions here to be equal or greater than what's required in the Reusable Workflow - # Permisions set here for the GITHUB_TOKEN are then passed to the Reusable Workflow + # Permissions set here for the GITHUB_TOKEN are then passed to the Reusable Workflow # Calling permissions must be equal to or greater than these reusable permissions for it to work # https://docs.github.com/en/actions/using-workflows/reusing-workflows#supported-keywords-for-jobs-that-call-a-reusable-workflow permissions: 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 }} - # 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 @@ -72,7 +74,7 @@ jobs: # target: # 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"]' + # for more platform build options, there's a "QEMU" reusable workflow ption in this repo's .github/workflows folder + platforms: '["linux/amd64", "linux/arm64"]' # comment-enable: true