Skip to content

Commit

Permalink
Update chart-releaser.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
christianhuth authored Oct 1, 2024
1 parent 87e8591 commit e81e28d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/chart-releaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,17 @@ jobs:
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
# Optional step if GPG signing is used
- name: Import GPG key
run: |
echo "${{ secrets.GPG_PRIVATE_KEY_BASE64 }}" | base64 -d | gpg --dearmor --output keyring.gpg
echo "${{ secrets.GPG_PRIVATE_KEY_PASSPHRASE }}" > passphrase-file.txt
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_KEY: "${{ secrets.GPG_PRIVATE_KEY_UID }}"
CR_KEYRING: keyring.gpg
CR_PASSPHRASE_FILE: passphrase-file.txt
CR_SIGN: true

0 comments on commit e81e28d

Please sign in to comment.