Skip to content

Commit 459fcb1

Browse files
committed
fix error in GH actions release script
Signed-off-by: Tim Ramlot <[email protected]>
1 parent eb82bb0 commit 459fcb1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ jobs:
6767
id: deploy
6868
shell: bash
6969
run: |
70-
./bin/helm template deploy/charts/google-cas-issuer --set image.tag=${${GITHUB_REF##*/}#v} | tee google-cas-issuer-${GITHUB_REF##*/}.yaml
70+
VERSION=${GITHUB_REF##*/} \
71+
./bin/helm template deploy/charts/google-cas-issuer --set image.tag=${VERSION#v} | tee google-cas-issuer-${VERSION}.yaml
7172
-
7273
name: create release
7374
id: create_release

0 commit comments

Comments
 (0)