Skip to content
Prev Previous commit
Revert to original workflow structure with updated secrets
- Restore "Build bundle" and "Release to Sonatype" step names
- Keep publishSigned in Build bundle step
- Use sonaRelease in Release step with correct secret names
- Maintain original workflow structure with modern functionality

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
  • Loading branch information
xerial and claude committed Jul 19, 2025
commit 68548a1770f0f192bcfeb9f4eb97ca7c04da1522
9 changes: 4 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,12 @@ jobs:
env:
PGP_SECRET: ${{ secrets.PGP_SECRET }}
run: echo $PGP_SECRET | base64 --decode | gpg --import --batch --yes
- name: Publish signed artifacts
- name: Build bundle
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
SONATYPE_USERNAME: '${{ secrets.SONATYPE_USERNAME }}'
SONATYPE_PASSWORD: '${{ secrets.SONATYPE_PASSWORD }}'
run: ./sbt publishSigned
- name: Release to Sonatype Central
run: |
./sbt publishSigned
- name: Release to Sonatype
env:
SONATYPE_USERNAME: '${{ secrets.SONATYPE_USERNAME }}'
SONATYPE_PASSWORD: '${{ secrets.SONATYPE_PASSWORD }}'
Expand Down
Loading