Skip to content

Commit 35a9b57

Browse files
fix: strip v prefix from sidecar image tag (#1500)
Co-authored-by: Daniel Budziwojski <dbudziwojski@newrelic.com>
1 parent 9ade3bf commit 35a9b57

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/release-integration-sidecar.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555

5656
- name: Set image tag
5757
run: |
58-
VERSION=${{ github.ref_name || inputs.tag }}
58+
VERSION=$(echo "${{ github.ref_name || inputs.tag }}" | sed 's/^v//')
5959
echo "DOCKER_IMAGE_TAG=${VERSION}-sidecar" >> $GITHUB_ENV
6060
6161
- name: Set up QEMU

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## Unreleased
99

10+
### bugfix
11+
- fix sidecar image tag, strip "v" prefix. @danielstokes [#1500](https://github.com/newrelic/nri-kubernetes/pull/1500)
12+
1013
## v4.3.5 - 2026-07-01
1114

1215
### 🐞 Bug fixes

0 commit comments

Comments
 (0)