From b0b94382a0c58c4343e69311f42f034d662d057f Mon Sep 17 00:00:00 2001 From: jadamcrain Date: Thu, 28 May 2026 14:25:42 -0700 Subject: [PATCH] ci: fix Maven GPG import input name crazy-max/ghaction-import-gpg@v7 expects 'gpg_private_key' (underscore); the workflow used 'gpg-private-key' (hyphen), which was silently ignored and caused 'Input required and not supplied: gpg_private_key', failing the Maven Central release for 1.5.0-RC2. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c1e38c68..f6b300a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -362,7 +362,7 @@ jobs: - name: Import PGP key uses: crazy-max/ghaction-import-gpg@v7 with: - gpg-private-key: ${{ secrets.SFIO_PGP_PRIVATE_KEY }} + gpg_private_key: ${{ secrets.SFIO_PGP_PRIVATE_KEY }} passphrase: ${{ secrets.SFIO_PGP_PRIVATE_KEY_PASSPHRASE }} - name: Deploy Java to Maven Central shell: bash