File tree Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change 4040 username : ${{ secrets.HELM_USERNAME }}
4141 password : ${{ secrets.HELM_PASSWORD }}
4242
43- - name : Import GPG Key
44- id : import-gpg-key
45- uses : crazy-max/ghaction-import-gpg@v6
46- with :
47- gpg_private_key : ${{ secrets.GPG_PRIVATE_KEY }}
48- passphrase : ${{ secrets.GPG_PASSPHRASE }}
49-
5043 - name : Package Helm Chart
5144 id : package
5245 run : |
6255 # Package and sign the chart with GPG key
6356 helm package ${{ github.event.client_payload.chart_path }} \
6457 --destination helm-packages \
65- --version ${{ github.event.client_payload.chart_version }} \
66- --sign \
67- --key ${{ steps.import-gpg-key.outputs.keyid }} \
68- --keyring "/home/runner/.gnupg/pubring.kbx"
58+ --version ${{ github.event.client_payload.chart_version }}
6959
7060 # Get the package filename
7161 CHART_PACKAGE=$(ls helm-packages/*.tgz | head -1)
You can’t perform that action at this time.
0 commit comments