Skip to content

Commit a85254b

Browse files
authored
Merge the "bugfix/deployment-disable-unwanted-tags" branch into the "develop" branch
This merge updates `.github/workflows/deployment.yml` to remove redundant `debug=false` flavor settings from the deployment workflow metadata steps. The workflow continues to disable implicit `latest` tag generation, but it no longer carries the extra `debug=false` lines in the three `docker/metadata-action@v5` invocations. In `Docker meta (version tags + labels)`, `Normalize tag (match tag)`, and `Normalize promote name (floating tag)`, the `flavor:` block is reduced from two entries to one by removing `debug=false` and leaving `latest=false` intact. This preserves the existing explicit tag behavior while simplifying the metadata configuration. No other files or workflow jobs are modified by this merge.
2 parents f67299f + c2064ba commit a85254b

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

.github/workflows/deployment.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ jobs:
9595
type=ref,event=tag
9696
flavor: |
9797
latest=false
98-
debug=false
9998
10099
# Authenticate to Docker Hub so the workflow can push images.
101100
- name: Login to Docker Hub
@@ -184,7 +183,6 @@ jobs:
184183
type=raw,value=${{ github.event.inputs.tag }}
185184
flavor: |
186185
latest=false
187-
debug=false
188186
189187
# Extract only the tag portion from metadata-action output of the tag.
190188
- name: Extract normalized tag only
@@ -213,7 +211,6 @@ jobs:
213211
type=raw,value=${{ github.event.inputs.promote_name }}
214212
flavor: |
215213
latest=false
216-
debug=false
217214
218215
# Extract only the promote name portion from metadata-action output of the floating tag.
219216
- name: Extract normalized promote tag

0 commit comments

Comments
 (0)