Release #35
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: Release | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: "The version (3.X.X) to be released" | |
required: true | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
env: | |
VERSION: ${{ github.event.inputs.version }} | |
steps: | |
- name: Validate is valid version | |
run: npx -y semver $VERSION | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # need git history for spotless license header | |
token: ${{ secrets.GH_TOKEN_CHAOS_BOT }} | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Configure Git | |
run: | | |
git config user.email "[email protected]" | |
git config user.name "Chaos Monkey Bot" | |
- name: Bump Version | |
run: ./mvnw versions:set-property -Dproperty=revision -DnewVersion=$VERSION | |
- name: Tag | |
run: | | |
git commit -m "Release $VERSION" -o pom.xml | |
git tag -a -m "Release $VERSION" v$VERSION | |
- name: Move to next Snapshot | |
run: | | |
NEXT_VERSION=`npx -y semver $VERSION -i`-SNAPSHOT | |
./mvnw versions:set-property -Dproperty=revision -DnewVersion=$NEXT_VERSION | |
cp chaos-monkey-docs/src/main/asciidoc/changes.adoc.template chaos-monkey-docs/src/main/asciidoc/changes.adoc | |
git commit -m "Prepare for next version: $NEXT_VERSION" -o pom.xml chaos-monkey-docs/src/main/asciidoc/changes.adoc | |
- name: Push (Release Tag + Main Branch) | |
run: git push --follow-tags |