Release 3.3.3 #103
Workflow file for this run
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
name: SmallRye Release | |
on: | |
pull_request: | |
types: [closed] | |
paths: | |
- '.github/project.yml' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
name: release | |
if: ${{github.event.pull_request.merged == true}} | |
env: | |
GITHUB_TOKEN: ${{secrets.RELEASE_TOKEN}} | |
steps: | |
- uses: radcortez/project-metadata-action@main | |
name: retrieve project metadata | |
id: metadata | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
metadata-file-path: '.github/project.yml' | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{secrets.RELEASE_TOKEN}} | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
- name: maven release ${{steps.metadata.outputs.current-version}} | |
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 | |
git checkout ${{github.base_ref}} | |
git rebase release | |
mvn -B release:perform -Prelease -s maven-settings.xml | |
git push | |
git push --tags | |
- name: docs release ${{steps.metadata.outputs.current-version}} | |
run: | | |
git checkout -b ${{steps.metadata.outputs.current-version}} ${{steps.metadata.outputs.current-version}} | |
cd documentation | |
mvn package | |
VERSION=${1:-"$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)"} | |
pipx install pipenv | |
pipenv install | |
git fetch origin gh-pages --depth=1 | |
git config --global user.name "SmallRye CI" | |
git config --global user.email "[email protected]" | |
pipenv run mike deploy --config-file=mkdocs.yaml --push --update-aliases "${VERSION}" Latest | |
- uses: radcortez/milestone-release-action@main | |
name: milestone release | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
milestone-title: ${{steps.metadata.outputs.current-version}} | |
- name: generate tck report | |
run: | | |
cd target/checkout | |
mvn surefire-report:report | |
mv testsuite/tck/target/tck-results.html $GITHUB_WORKSPACE | |
- uses: meeDamian/[email protected] | |
name: upload tck asset to release | |
with: | |
token: ${{secrets.GITHUB_TOKEN}} | |
tag: ${{steps.metadata.outputs.current-version}} | |
allow_override: true | |
gzip: false | |
files: tck-results.html |