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 056410e commit 71c1ce2Copy full SHA for 71c1ce2
.github/workflows/release-helm.yaml
@@ -58,6 +58,15 @@ jobs:
58
VERSION=$(grep '^version:' ./charts/${{ inputs.chart }}/Chart.yaml | cut -d ' ' -f 2 | tr -d '"')
59
echo "new-raw=${VERSION}" >> $GITHUB_OUTPUT
60
61
+ - name: Load push key
62
+ run: |
63
+ mkdir -p ~/.ssh
64
+ chmod 700 ~/.ssh
65
+ echo "${{ secrets.HELM_PUSH_KEY }}" > ~/.ssh/id_ed25519
66
+ chmod 600 ~/.ssh/id_ed25519
67
+
68
+ # Use ssh instead of https (github token)
69
+ git remote set-url origin [email protected]:${{ github.repository }}.git
70
- name: Commit and push helm changes
71
run: |
72
git add charts/${{ inputs.chart }}/Chart.yaml
0 commit comments