Skip to content

test gpg upload

test gpg upload #3

Workflow file for this run

name: test-gpg
on: push
jobs:
test-key-download:
name: Download GPG Key
runs-on: ubuntu-latest
env:
PUBLIC_KEY: ${{ secrets.GPG_PUBLIC_KEY_SECRET_NAME }}
environment: release
steps:
- run: |
az keyvault secret show --name "$PUBLIC_KEY" --vault-name \
signing-akv --query "value" | sed -e 's/^"//' -e 's/"$//' | \
base64 -d >gcm.asc
- name: Publish Key
uses: actions/upload-artifact@v3
with:
path: gcm.asc