From 8dc750a72b528ed51c9833092bd1d8c3f96ccca7 Mon Sep 17 00:00:00 2001 From: Frizlab Date: Fri, 23 Feb 2024 03:44:46 +0100 Subject: [PATCH] Move gpg key import earlier and add passphrase --- .github/workflows/release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 37303f3..7e5a432 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -21,13 +21,13 @@ jobs: runs-on: [macos-14] steps: + - name: Import GPG Signing Key + run: gpg --import --pinentry-mode=loopback --passphrase "${{ secrets.GPG_PRIVATE_KEY_PASS }}" <<<'${{ secrets.GPG_PRIVATE_KEY }}' + - name: Install xct and swift-sh run: | brew install xcode-actions/tap/xct xcode-actions/tap/swift-sh - - name: Import GPG Signing Key - run: gpg --import --pinentry-mode=loopback --passphrase '' <<<'${{ secrets.GPG_PRIVATE_KEY }}' - - name: Checkout eXtenderZ versioning uses: actions/checkout@v2 with: