From eccf0794f4eb2b562cdf96f06036e7835c2f34ba Mon Sep 17 00:00:00 2001 From: Owen Walpole Date: Mon, 27 May 2024 14:02:26 -0500 Subject: [PATCH] Fix CI GPG key again --- .github/workflows/rust_ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust_ci.yml b/.github/workflows/rust_ci.yml index 6a97b69..d7e6dd5 100644 --- a/.github/workflows/rust_ci.yml +++ b/.github/workflows/rust_ci.yml @@ -36,7 +36,7 @@ jobs: - name: Run Command run: cargo ${{ matrix.action.command }} ${{ matrix.action.args }} - name: Configure GPG Key - run: echo -n "$GPG_SIGNING_KEY" | base64 --decode --ignore-garbage | gpg --batch --allow-secret-key-import --import + run: echo -n "$GPG_SIGNING_KEY" | gpg --batch --allow-secret-key-import --import env: GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }} - name: Sign Release