Skip to content

Commit 52900f9

Browse files
committed
Automatically deploy snapshots to central (attempt 3)
1 parent 9732627 commit 52900f9

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

.github/workflows/snapshot.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,14 @@ jobs:
1616
distribution: 'temurin'
1717
java-version: '17'
1818
cache: maven
19-
server-id: central
19+
server-id: central # Value of the distributionManagement/repository/id field of the pom.xml
2020
server-username: SONATYPE_USERNAME
2121
server-password: SONATYPE_PASSWORD
22-
gpg-private-key: GPG_PRIVATE_KEY
23-
gpg-passphrase: GPG_PASSPHRASE
22+
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} # has to be read directly from secrets
23+
gpg-passphrase: MAVEN_GPG_PASSPHRASE # default name used by maven-gpg-plugin
2424
- name: Deploy snapshot
25-
run: mvn -ntp clean deploy -P release
25+
run: mvn -Dmaven.test.skip=true -ntp -B clean deploy -P release
2626
env:
2727
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
2828
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
29-
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
30-
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
29+
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -476,8 +476,10 @@ Go to one of them and run `mvn site`.
476476

477477
## Development
478478

479-
### Manual deployment
479+
### Snapshot deployment
480+
A new snapshot is deployed to sonatype on each commit merged to `main` branch. See [snapshot.yml](.github/workflows/snapshot.yml) workflow for details.
480481

482+
### Manual Release deployment
481483
Set sonatype credentials in `~/.m2/settings.xml`:
482484

483485
```xml
@@ -492,11 +494,9 @@ Set sonatype credentials in `~/.m2/settings.xml`:
492494
</settings>
493495
```
494496

495-
#### Snapshot deployment
496-
To deploy snapshot to sonatype snapshot repo run `mvn clean deploy -P release`.
497-
498-
#### Release deployment
499-
To deploy release to sonatype release repo run `mvn release:clean release:prepare release:perform -P release`.
497+
To deploy release to sonatype release repo run `mvn release:clean release:prepare release:perform -P release`.
498+
Make sure you have proper pgp keys set up.
499+
This process will be automated in the future.
500500

501501
## License
502502
```

0 commit comments

Comments
 (0)