2022-03-21 21:07:41 +01:00
|
|
|
name: Release
|
2023-01-13 14:41:37 +01:00
|
|
|
|
2022-03-21 21:07:41 +01:00
|
|
|
on:
|
2022-05-22 17:26:22 +02:00
|
|
|
workflow_dispatch:
|
2022-03-21 21:07:41 +01:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- dev
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- dev
|
2023-01-13 14:41:37 +01:00
|
|
|
|
2022-03-21 21:07:41 +01:00
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
name: Release
|
2022-12-05 23:03:48 +01:00
|
|
|
runs-on: ubuntu-latest
|
2022-03-21 21:07:41 +01:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-27 18:02:48 +02:00
|
|
|
uses: actions/checkout@v4
|
2022-03-21 21:07:41 +01:00
|
|
|
with:
|
2023-01-13 22:23:17 +01:00
|
|
|
# Make sure the release step uses its own credentials:
|
|
|
|
# https://github.com/cycjimmy/semantic-release-action#private-packages
|
|
|
|
persist-credentials: false
|
2022-03-21 21:07:41 +01:00
|
|
|
fetch-depth: 0
|
2023-06-12 02:55:10 +02:00
|
|
|
- name: Cache
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
${{ runner.home }}/.gradle/caches
|
|
|
|
${{ runner.home }}/.gradle/wrapper
|
|
|
|
.gradle
|
|
|
|
node_modules
|
2023-11-21 23:41:41 +01:00
|
|
|
key: gradle-npm-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', 'package-lock.json') }}
|
2022-03-21 21:07:41 +01:00
|
|
|
- name: Build with Gradle
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2023-07-21 19:17:06 +02:00
|
|
|
run: ./gradlew generateMeta clean
|
2022-03-21 21:07:41 +01:00
|
|
|
- name: Setup semantic-release
|
2023-02-13 02:44:34 +01:00
|
|
|
run: npm install
|
2022-03-21 21:07:41 +01:00
|
|
|
- name: Release
|
|
|
|
env:
|
2023-01-10 21:37:15 +01:00
|
|
|
GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }}
|
2023-02-13 02:45:55 +01:00
|
|
|
run: npm exec semantic-release
|