We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a6f9d6 commit acaac26Copy full SHA for acaac26
1 file changed
.github/workflows/docker-build-images.yml
@@ -113,6 +113,13 @@ on: # yamllint disable-line rule:truthy
113
default: "gha"
114
type: string
115
required: false
116
+ sign:
117
+ description: |
118
+ Sign built images.
119
+ See <../../actions/docker/sign-images/README.md>.
120
+ type: boolean
121
+ default: true
122
+ required: false
123
secrets:
124
oci-registry-password:
125
description: |
@@ -514,6 +521,7 @@ jobs:
514
521
const imagesToSign = Object.values(builtImages).map(image => image.images).flat();
515
522
core.setOutput('images-to-sign', JSON.stringify(imagesToSign));
516
523
- uses: ./self-workflow/actions/docker/sign-images
524
+ if: inputs.sign
517
525
with:
518
526
images: ${{ steps.get-images-to-sign.outputs.images-to-sign }}
519
527
github-token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments