Skip to content

Commit

Permalink
Prepare Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cuioss committed Aug 30, 2024
1 parent 244df6d commit 535843c
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/maven-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
mvn -B --no-transfer-progress site:site site:stage
git checkout ${{vars.GITHUB_BASE_REF}}
git rebase release
mvn -B --no-transfer-progress release:perform
mvn -B --no-transfer-progress -Prelease-perform release:perform
env:
MAVEN_USERNAME: ${{ secrets.OSS_SONATYPE_USERNAME }}
MAVEN_CENTRAL_TOKEN: ${{ secrets.OSS_SONATYPE_PASSWORD }}
Expand Down
25 changes: 25 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,29 @@
<module>bom</module>
<module>modules</module>
</modules>
<profiles>
<profile>
<id>release-perform</id>
<build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit 535843c

Please sign in to comment.