Skip to content

Commit

Permalink
Merge pull request #934 from cescoffier/update-release-process
Browse files Browse the repository at this point in the history
Update release process.
  • Loading branch information
cescoffier authored Aug 28, 2024
2 parents 70a936b + e3a5db7 commit 5ddeb01
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 19 deletions.
30 changes: 16 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 "smallrye@googlegroups.com"
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:
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 "smallrye@googlegroups.com"
cd docs
Expand All @@ -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

0 comments on commit 5ddeb01

Please sign in to comment.