Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .changeset/quiet-trainers-perform.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"reusable-docker-build-publish": minor
---

feat: manifest-debug input
8 changes: 8 additions & 0 deletions .github/workflows/reusable-docker-build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,12 @@
required: false
type: string
default: "true"
manifest-debug:
description: |
Enable debug output for Docker manifest generation step. Set to 'true' to enable.
required: false
type: string
default: "false"

outputs:
docker-image-sha-digest-amd64:
Expand Down Expand Up @@ -514,7 +520,7 @@
environment:
name: ${{ inputs.environment }}
# http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
deployment: false

Check failure on line 523 in .github/workflows/reusable-docker-build-publish.yml

View workflow job for this annotation

GitHub Actions / ci-lint-misc

[actionlint] reported by reviewdog 🐶 unexpected key "deployment" for "environment" section. expected one of "name", "url" [syntax-check] Raw Output: e:.github/workflows/reusable-docker-build-publish.yml:523:7: unexpected key "deployment" for "environment" section. expected one of "name", "url" [syntax-check]
runs-on: ${{ matrix.runner }}
timeout-minutes: ${{ inputs.timeout }}
strategy:
Expand Down Expand Up @@ -680,7 +686,7 @@
environment:
name: ${{ inputs.environment }}
# http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
deployment: false

Check failure on line 689 in .github/workflows/reusable-docker-build-publish.yml

View workflow job for this annotation

GitHub Actions / ci-lint-misc

[actionlint] reported by reviewdog 🐶 unexpected key "deployment" for "environment" section. expected one of "name", "url" [syntax-check] Raw Output: e:.github/workflows/reusable-docker-build-publish.yml:689:7: unexpected key "deployment" for "environment" section. expected one of "name", "url" [syntax-check]
runs-on: ubuntu-24.04
timeout-minutes: 5
outputs:
Expand Down Expand Up @@ -781,6 +787,8 @@
- name: Docker manifest index
uses: smartcontractkit/.github/actions/build-push-docker-manifest@build-push-docker-manifest/v1
id: docker-manifest
env:
CL_MANIFEST_DEBUG: ${{ inputs.manifest-debug }}
with:
# Avoid using `github.workflow_ref` here because the `cosign sign`
# command will use the reusable workflow path for its identity and
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,12 @@ on:
required: false
type: string
default: "true"
manifest-debug:
description: |
Enable debug output for Docker manifest generation step. Set to 'true' to enable.
required: false
type: string
default: "false"

outputs:
docker-image-sha-digest-amd64:
Expand Down Expand Up @@ -777,6 +783,8 @@ jobs:
- name: Docker manifest index
uses: smartcontractkit/.github/actions/build-push-docker-manifest@build-push-docker-manifest/v1
id: docker-manifest
env:
CL_MANIFEST_DEBUG: ${{ inputs.manifest-debug }}
with:
# Avoid using `github.workflow_ref` here because the `cosign sign`
# command will use the reusable workflow path for its identity and
Expand Down
Loading