From 4c014f7b673a1d4cb65a2914efda095a5ceecd03 Mon Sep 17 00:00:00 2001 From: Norman Maurer Date: Wed, 13 Mar 2024 18:47:51 +0100 Subject: [PATCH] Fix release workflow Motivation: We use an old way how to configure the gpg action. Modifications: Update to new syntax Result: Release works again --- .github/workflows/ci-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index 237d6f2..c97d073 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -38,7 +38,7 @@ jobs: id: import_gpg uses: crazy-max/ghaction-import-gpg@v6 with: - gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} + gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} passphrase: ${{ secrets.GPG_PASSPHRASE }} - name: Setup git configuration