Skip to content

Commit 2302832

Browse files
committed
Just keep app version and helm chart version in sync
1 parent 90bbf36 commit 2302832

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/docker-build.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ jobs:
5858
# [ TODO - Issue #3 ] - The helm package is only being published to the github 'Release' page by the `softprops/action-gh-release action`
5959
# which runs below. I guess that works, but seems less than ideal.
6060
run: |
61-
helm package pia-proxy-helm --destination helm-chart/ --app-version ${{ steps.bump_version.outputs.new_tag }}
61+
version=$(echo ${{ steps.bump_version.outputs.new_tag }} | sed 's/^v//')
62+
helm package pia-proxy-helm --destination helm-chart/ --app-version ${{ steps.bump_version.outputs.new_tag }} --version $version
6263
6364
- uses: softprops/action-gh-release@v2
6465
with:

0 commit comments

Comments
 (0)