2023-02-19 22:13:23 +01:00
|
|
|
name: Create Release Version
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [main]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
release_on_push:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-02-20 04:51:30 +01:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- uses: actions/setup-java@v3
|
|
|
|
with:
|
|
|
|
java-version: '11'
|
|
|
|
distribution: 'adopt'
|
|
|
|
cache: gradle
|
|
|
|
|
|
|
|
- name: Validate Gradle wrapper
|
|
|
|
uses: gradle/wrapper-validation-action@v1
|
|
|
|
|
|
|
|
- name: Test & Build
|
|
|
|
uses: gradle/gradle-build-action@v2
|
|
|
|
with:
|
|
|
|
arguments: clean build -x assemble -x shadowJar
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2023-02-19 22:13:23 +01:00
|
|
|
- name: Create release
|
|
|
|
uses: rymndhng/release-on-push-action@v0.27.0
|
|
|
|
env:
|
2023-02-20 05:25:10 +01:00
|
|
|
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
2023-02-19 22:13:23 +01:00
|
|
|
with:
|
|
|
|
bump_version_scheme: norelease
|
2023-02-20 06:04:43 +01:00
|
|
|
tag_prefix: ''
|
2023-02-19 22:13:23 +01:00
|
|
|
release_name: "Release <RELEASE_VERSION>"
|
|
|
|
use_github_release_notes: true
|