From da14603aee6183b0defead49f17097e13837be37 Mon Sep 17 00:00:00 2001 From: "j.spijker@ultimaker.com" Date: Fri, 1 Jul 2022 13:57:56 +0200 Subject: [PATCH] Use the gpg private key Obtained with: ``` gpg --armor --export-secret-key -u | base64 | xclip ``` Contributes to CURA-9365 --- .github/workflows/cura-installer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cura-installer.yml b/.github/workflows/cura-installer.yml index 2086446156..a6f5348594 100644 --- a/.github/workflows/cura-installer.yml +++ b/.github/workflows/cura-installer.yml @@ -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 }}