mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 14:55:03 -06:00
Install GPG key Linux
Obtained by performing the following commands ``` gpg --import private-gpg.key gpg --armor --export-secret-key -u <key_id_shown_when_run_previous_cmd> ``` Contributes to CURA-9365
This commit is contained in:
parent
4b547628fc
commit
42b5aa491d
1 changed files with 5 additions and 0 deletions
5
.github/workflows/cura-installer.yml
vendored
5
.github/workflows/cura-installer.yml
vendored
|
@ -44,6 +44,7 @@ env:
|
|||
MAC_NOTARIZE_USER: ${{ secrets.MAC_NOTARIZE_USER }}
|
||||
MAC_NOTARIZE_PASS: ${{ secrets.MAC_NOTARIZE_PASS }}
|
||||
MACOS_CERT_P12: ${{ secrets.MACOS_CERT_P12 }}
|
||||
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
|
||||
|
||||
jobs:
|
||||
cura-installer-create:
|
||||
|
@ -109,6 +110,10 @@ jobs:
|
|||
chmod +x $GITHUB_WORKSPACE/appimagetool
|
||||
echo "APPIMAGETOOL_LOCATION=$GITHUB_WORKSPACE/appimagetool" >> $GITHUB_ENV
|
||||
|
||||
- name: Configure GPG Key Linux (Bash)
|
||||
if: ${{ runner.os == 'Linux' }}
|
||||
run: echo -n "GPG_PRIVATE_KEY" | base64 --decode | gpg --import
|
||||
|
||||
- name: Clean Conan local cache
|
||||
if: ${{ inputs.conan_clean_local_cache }}
|
||||
run: conan remove "*" -f
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue