Update CI workflow

This commit is contained in:
CrazyMax 2020-05-07 20:46:52 +02:00
parent e7fe82a19b
commit 1173bbb660
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7

View file

@ -24,6 +24,7 @@ jobs:
uses: actions/checkout@v2 uses: actions/checkout@v2
- -
name: Import GPG private key name: Import GPG private key
id: import_gpg
uses: ./ uses: ./
with: with:
git_user_signingkey: true git_user_signingkey: true
@ -35,3 +36,9 @@ jobs:
env: env:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY_TEST }} GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY_TEST }}
PASSPHRASE: ${{ secrets.PASSPHRASE_TEST }} PASSPHRASE: ${{ secrets.PASSPHRASE_TEST }}
-
name: GPG user IDs
run: |
echo "fingerprint: ${{ steps.import_gpg.outputs.fingerprint }}"
echo "keyid: ${{ steps.import_gpg.outputs.keyid }}"
echo "email: ${{ steps.import_gpg.outputs.email }}"