-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #934 from cescoffier/update-release-process
Update release process.
- Loading branch information
Showing
2 changed files
with
18 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,33 +26,35 @@ jobs: | |
with: | ||
token: ${{secrets.RELEASE_TOKEN}} | ||
|
||
- uses: actions/setup-java@v4 | ||
- name: Java setup | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: 17 | ||
distribution: temurin | ||
java-version: '17' | ||
distribution: 'temurin' | ||
cache: maven | ||
server-id: 'oss.sonatype' | ||
server-username: 'MAVEN_DEPLOY_USERNAME' | ||
server-password: 'MAVEN_DEPLOY_TOKEN' | ||
gpg-private-key: ${{secrets.MAVEN_GPG_PRIVATE_KEY}} | ||
gpg-passphrase: 'MAVEN_GPG_PASSPHRASE' | ||
|
||
- name: maven release ${{steps.metadata.outputs.current-version}} | ||
env: | ||
MAVEN_DEPLOY_USERNAME: ${{secrets.MAVEN_DEPLOY_USERNAME}} | ||
MAVEN_DEPLOY_TOKEN: ${{secrets.MAVEN_DEPLOY_TOKEN}} | ||
MAVEN_GPG_PASSPHRASE: ${{secrets.MAVEN_GPG_PASSPHRASE}} | ||
run: | | ||
java -version | ||
gpg --quiet --batch --yes --decrypt --passphrase="${{secrets.SECRET_PASSPHRASE}}" --output smallrye-sign.asc .github/release/smallrye-sign.asc.gpg | ||
gpg --quiet --batch --yes --decrypt --passphrase="${{secrets.SECRET_PASSPHRASE}}" --output maven-settings.xml .github/release/maven-settings.xml.gpg | ||
gpg --fast-import --no-tty --batch --yes smallrye-sign.asc | ||
git config --global user.name "SmallRye CI" | ||
git config --global user.email "[email protected]" | ||
git checkout -b release | ||
mvn -B release:prepare -Prelease,coverage -DreleaseVersion=${{steps.metadata.outputs.current-version}} -DdevelopmentVersion=${{steps.metadata.outputs.next-version}} -s maven-settings.xml | ||
mvn -B release:prepare -Prelease,coverage -DreleaseVersion=${{steps.metadata.outputs.current-version}} -DdevelopmentVersion=${{steps.metadata.outputs.next-version}} | ||
git checkout ${{github.base_ref}} | ||
git rebase release | ||
mvn -B release:perform -Prelease -s maven-settings.xml | ||
mvn -B release:perform -Prelease | ||
git push | ||
git push --tags | ||
- uses: actions/upload-artifact@v4 | ||
name: tck-report | ||
with: | ||
name: tck-report | ||
path: testsuite/tck/target/surefire-reports | ||
|
||
- uses: radcortez/milestone-release-action@main | ||
name: milestone release | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,10 +25,7 @@ jobs: | |
with: | ||
python-version: 3.x | ||
- name: Tools setup | ||
run: | | ||
gpg --quiet --batch --yes --decrypt --passphrase="${{secrets.SECRET_PASSPHRASE}}" --output smallrye-sign.asc .github/release/smallrye-sign.asc.gpg | ||
gpg --quiet --batch --yes --decrypt --passphrase="${{secrets.SECRET_PASSPHRASE}}" --output maven-settings.xml .github/release/maven-settings.xml.gpg | ||
gpg --fast-import --no-tty --batch --yes smallrye-sign.asc | ||
run: | | ||
git config --global user.name "SmallRye CI" | ||
git config --global user.email "[email protected]" | ||
cd docs | ||
|
@@ -37,6 +34,6 @@ jobs: | |
pipenv install | ||
cd .. | ||
- name: Build local artifacts | ||
run: mvn -B install -DskipTests -Prelease -s maven-settings.xml | ||
run: mvn -B install -DskipTests | ||
- name: Render docs and publish | ||
run: .github/render-documentation.sh |