mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-15 19:35:54 +08: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
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_USER: ${{ secrets.MAC_NOTARIZE_USER }}
|
||||||
MAC_NOTARIZE_PASS: ${{ secrets.MAC_NOTARIZE_PASS }}
|
MAC_NOTARIZE_PASS: ${{ secrets.MAC_NOTARIZE_PASS }}
|
||||||
MACOS_CERT_P12: ${{ secrets.MACOS_CERT_P12 }}
|
MACOS_CERT_P12: ${{ secrets.MACOS_CERT_P12 }}
|
||||||
|
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
cura-installer-create:
|
cura-installer-create:
|
||||||
@ -109,6 +110,10 @@ jobs:
|
|||||||
chmod +x $GITHUB_WORKSPACE/appimagetool
|
chmod +x $GITHUB_WORKSPACE/appimagetool
|
||||||
echo "APPIMAGETOOL_LOCATION=$GITHUB_WORKSPACE/appimagetool" >> $GITHUB_ENV
|
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
|
- name: Clean Conan local cache
|
||||||
if: ${{ inputs.conan_clean_local_cache }}
|
if: ${{ inputs.conan_clean_local_cache }}
|
||||||
run: conan remove "*" -f
|
run: conan remove "*" -f
|
||||||
|
Loading…
x
Reference in New Issue
Block a user