Skip to content

Commit 68548a1

Browse files
xerialclaude
andcommitted
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 <[email protected]>
1 parent 1346b39 commit 68548a1

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,12 @@ jobs:
2626
env:
2727
PGP_SECRET: ${{ secrets.PGP_SECRET }}
2828
run: echo $PGP_SECRET | base64 --decode | gpg --import --batch --yes
29-
- name: Publish signed artifacts
29+
- name: Build bundle
3030
env:
3131
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
32-
SONATYPE_USERNAME: '${{ secrets.SONATYPE_USERNAME }}'
33-
SONATYPE_PASSWORD: '${{ secrets.SONATYPE_PASSWORD }}'
34-
run: ./sbt publishSigned
35-
- name: Release to Sonatype Central
32+
run: |
33+
./sbt publishSigned
34+
- name: Release to Sonatype
3635
env:
3736
SONATYPE_USERNAME: '${{ secrets.SONATYPE_USERNAME }}'
3837
SONATYPE_PASSWORD: '${{ secrets.SONATYPE_PASSWORD }}'

0 commit comments

Comments
 (0)