Use the gpg private key

Obtained with:
```
 gpg --armor --export-secret-key -u <key_identity_obtained_when_you_import> | base64 | xclip
```

Contributes to CURA-9365
This commit is contained in:
j.spijker@ultimaker.com 2022-07-01 13:57:56 +02:00 committed by Jelle Spijker
parent 0f5e0a8399
commit da14603aee

View file

@ -112,7 +112,7 @@ jobs:
- name: Configure GPG Key Linux (Bash)
if: ${{ runner.os == 'Linux' }}
run: echo -n "GPG_PRIVATE_KEY" | base64 --decode | gpg --import
run: echo -n "$GPG_PRIVATE_KEY" | base64 --decode | gpg --import
- name: Clean Conan local cache
if: ${{ inputs.conan_clean_local_cache }}