Skip to content

Commit 6b0ebbd

Browse files
committed
fix(gha): removed gpg signing for chartrepo
1 parent 1f8c6be commit 6b0ebbd

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

.github/workflows/helm-publish.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,6 @@ jobs:
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: |
@@ -62,10 +55,7 @@ jobs:
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)

0 commit comments

Comments
 (0)