Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(workflows): remove unnecessary GPG key import and export steps #31

Merged
merged 1 commit into from
Mar 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/chart-releaser.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
sign: true
key: info@permify.co
generate-release-notes: true
14 changes: 2 additions & 12 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -11,8 +11,9 @@ jobs:
permissions:
contents: write
runs-on: ubuntu-latest

steps:
- name: Checkout
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
@@ -22,17 +23,6 @@ jobs:
git config user.name github-actions
git config user.email info@permify.co

- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_KEY_PASSPHRASE }}

- name: Export public key to keyring
run: |
mkdir -p ~/.gnupg
gpg --export > ~/.gnupg/pubring.gpg

- name: Set up Helm
uses: azure/setup-helm@v4
with: