We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90bbf36 commit 2302832Copy full SHA for 2302832
.github/workflows/docker-build.yaml
@@ -58,7 +58,8 @@ jobs:
58
# [ TODO - Issue #3 ] - The helm package is only being published to the github 'Release' page by the `softprops/action-gh-release action`
59
# which runs below. I guess that works, but seems less than ideal.
60
run: |
61
- helm package pia-proxy-helm --destination helm-chart/ --app-version ${{ steps.bump_version.outputs.new_tag }}
+ 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
63
64
- uses: softprops/action-gh-release@v2
65
with:
0 commit comments