From 71dd2a3897745fa0d5c04c9343e39833a03357c3 Mon Sep 17 00:00:00 2001 From: Liam Miller-Cushon Date: Wed, 9 Feb 2022 11:14:32 -0800 Subject: [PATCH] Update release.yml Update release workflow to actually push to sonatype --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2c5315d9f..09cd08048 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,7 +46,7 @@ jobs: git push origin "v${{ github.event.inputs.version }}" - name: Build Jars - run: mvn --no-transfer-progress clean verify gpg:sign -DskipTests=true -Dgpg.passphrase="${{ secrets.GPG_PASSPHRASE }}" + run: mvn --no-transfer-progress -P sonatype-oss-release clean deploy -Dgpg.passphrase="${{ secrets.GPG_PASSPHRASE }}" - name: Add Jars to Release Entry uses: softprops/action-gh-release@v0.1.14