Skip to content

Commit f7729fa

Browse files
Fix release workflow (#1243)
* Fix release workflow Fix the image tag of the must-gather image. Signed-off-by: Andreas Gerstmayr <[email protected]> * update changelog Signed-off-by: Andreas Gerstmayr <[email protected]> --------- Signed-off-by: Andreas Gerstmayr <[email protected]>
1 parent 0b0e615 commit f7729fa

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.chloggen/fix_release_workflow.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
2+
change_type: bug_fix
3+
4+
# The name of the component, or a single word describing the area of concern, (e.g. tempostack, tempomonolithic, github action)
5+
component: github action
6+
7+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
8+
note: Fix release workflow
9+
10+
# One or more tracking issues related to the change
11+
issues: [1243]
12+
13+
# (Optional) One or more lines of additional information to render under the primary note.
14+
# These lines will be padded with 2 spaces and then inserted directly into the document.
15+
# Use pipe (|) for multiline entries.
16+
subtext: |
17+
Fix the image tag of the must-gather image.

.github/workflows/reusable-publish-images.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,5 @@ jobs:
8181
file: ./cmd/gather/Dockerfile
8282
platforms: linux/amd64,linux/arm64,linux/s390x,linux/ppc64le
8383
push: ${{ inputs.push }}
84-
tags: ${{ github.repository }}/must-gather:${{ inputs.version_tag }}
84+
tags: ghcr.io/${{ github.repository }}/must-gather:${{ inputs.version_tag }}
8585
labels: ${{ steps.docker_meta.outputs.labels }}

0 commit comments

Comments
 (0)