From e2d5113a8486be0ba2ef6677a287e1aac0738bac Mon Sep 17 00:00:00 2001 From: Richie Caputo Date: Thu, 2 Apr 2026 11:50:41 -0400 Subject: [PATCH] Fix release workflow: remove conflicting --no-server with -i flag Mill does not allow --no-server and -i together. The publish step needs -i (interactive) for Maven Central credential prompts. Co-Authored-By: Claude Opus 4.6 (1M context) --- .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 01dff3c..f3f63fc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -112,7 +112,7 @@ jobs: MILL_SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} MILL_PGP_SECRET_BASE64: ${{ secrets.PGP_SECRET }} MILL_PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} - run: ./mill --no-server -i mill.javalib.SonatypeCentralPublishModule/ + run: ./mill -i mill.javalib.SonatypeCentralPublishModule/ - name: Create GitHub release uses: softprops/action-gh-release@v2