-
Notifications
You must be signed in to change notification settings - Fork 604
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
initial version for release action #2683
base: master
Are you sure you want to change the base?
Conversation
MAVEN_USERNAM: ${{ secrets.OSSRH_TOKEN_USER }} | ||
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN_PASSWORD }} | ||
run: mvn -B clean release:prepare release:perform -DreleaseVersion=${{ github.event.inputs.releaseVersion }} -DdryRun=${{ github.event.inputs.dryRun }} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO: deploy javadoc to https://adobe-consulting-services.github.io/acs-aem-commons/apidocs/
Codecov Report
@@ Coverage Diff @@
## master #2683 +/- ##
=========================================
Coverage 53.85% 53.85%
Complexity 5568 5568
=========================================
Files 753 753
Lines 30593 30593
Branches 3961 3961
=========================================
Hits 16477 16477
Misses 12575 12575
Partials 1541 1541 Continue to review full report at Codecov.
|
@davidjgonzalez Please set up OSSRH credentials as repo/orga secrets otherwise no one apart from you will ever be able to create releases. |
This requires the following organisation or repository secrets:
GPG_PRIVATE_KEY
, the private key for signing the releaseGPG_PASSPHRASE
, the passphrase for using the private keyOSSRH_TOKEN_USER
, the user name of a user for OSSRH for deploying to Maven Central, https://central.sonatype.org/publish/publish-guide/OSSRH_TOKEN_PASSWORD
, the token of a user for OSSRH for deploying to Maven Central, should be created via https://oss.sonatype.org/#profile;User%20Token. Used instead of password to decouple from the named user's credentials.@davidjgonzalez Can you set those up?