Skip to content

chore(TECHOPS-18898): fix gpg agent error in release workflow #4

chore(TECHOPS-18898): fix gpg agent error in release workflow

chore(TECHOPS-18898): fix gpg agent error in release workflow #4

Workflow file for this run

name: Fix GPG Agent Issue
on:
pull_request:
branches: ["master"]
jobs:
test-gpg-fix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Import GPG key
id: key-import
uses: crazy-max/ghaction-import-gpg@v6.1.0
with:
gpg_private_key: ${{ secrets.PUBLIC_RELEASES_GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.PUBLIC_RELEASES_GPG_PASSPHRASE }}
fingerprint: ${{ secrets.PUBLIC_RELEASES_GPG_FINGERPRINT }}
git_config_global: true
git_user_signingkey: true
git_commit_gpgsign: true