Skip to content

debug gpg stuff

debug gpg stuff #4

Workflow file for this run

name: debug
on:
workflow_dispatch:
push:
branches:
- debug-gpg
run-name: debug gpg stuff
jobs:
debug:
runs-on: ubuntu-22.04
steps:
- name: Configure GPG
env:
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
run: |
export GPG_TTY=$(tty)
echo "$GPG_SIGNING_KEY" | gpg --batch --import
- name: check identities
env:
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
run: |
gpg --fingerprint
gpg --list-keys
gpg --list-signatures
echo "$GPG_SIGNING_KEY" | gpg --show-keys --with-subkey-fingerprint