Release #20
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: | |
milestone: | |
types: [closed] | |
jobs: | |
build: | |
name: Release ${{ github.event.milestone.title }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
ref: master | |
fetch-depth: 0 | |
- name: Set up Git | |
run: | | |
git config user.name "Zonky Bot" | |
git config user.email "[email protected]" | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 8 | |
server-id: ossrh | |
server-username: MAVEN_USER | |
server-password: MAVEN_PASS | |
gpg-private-key: ${{ secrets.SIGNING_CERT }} | |
gpg-passphrase: SIGNING_PASS | |
- name: Release with Maven | |
env: | |
RELEASE_VERSION: ${{ github.event.milestone.title }} | |
MAVEN_USER: ${{ secrets.MAVEN_USER }} | |
MAVEN_PASS: ${{ secrets.MAVEN_PASS }} | |
SIGNING_PASS: ${{ secrets.SIGNING_PASS }} | |
run: mvn -B release:prepare release:perform -DreleaseVersion=$RELEASE_VERSION |