2022-05-10 01:36:28 +02:00
|
|
|
name: Release
|
|
|
|
|
|
|
|
on:
|
2022-06-24 00:55:50 +02:00
|
|
|
workflow_dispatch:
|
2022-05-10 01:36:28 +02:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-07-02 06:18:52 +02:00
|
|
|
- dev
|
2022-05-10 01:36:28 +02:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-07-02 06:18:52 +02:00
|
|
|
- dev
|
2022-05-10 01:36:28 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Cancel Previous Runs
|
2022-11-05 15:25:38 +01:00
|
|
|
uses: styfle/cancel-workflow-action@0.11.0
|
2022-05-10 01:36:28 +02:00
|
|
|
with:
|
|
|
|
access_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Checkout Repo
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up JDK 11
|
|
|
|
uses: actions/setup-java@v3
|
|
|
|
with:
|
|
|
|
java-version: '11'
|
|
|
|
distribution: 'zulu'
|
2022-07-02 06:18:52 +02:00
|
|
|
- name: Setup Node.js
|
2022-11-05 15:25:38 +01:00
|
|
|
uses: actions/setup-node@v3
|
2022-07-02 06:18:52 +02:00
|
|
|
with:
|
|
|
|
node-version: "lts/*"
|
2022-05-10 01:36:28 +02:00
|
|
|
- name: Build with Gradle
|
2022-05-27 00:08:19 +02:00
|
|
|
run: ./gradlew --no-daemon build
|
2022-07-02 06:18:52 +02:00
|
|
|
- name: Setup semantic-release
|
|
|
|
run: npm install -g semantic-release @semantic-release/git @semantic-release/changelog gradle-semantic-release-plugin -D
|
|
|
|
- name: Release
|
2022-05-10 01:36:28 +02:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2022-09-22 18:47:46 +02:00
|
|
|
run: npx semantic-release
|