2022-03-20 19:03:05 +01:00
|
|
|
name: Release
|
2023-01-13 14:42:47 +01:00
|
|
|
|
2022-03-20 19:03:05 +01:00
|
|
|
on:
|
2022-05-27 14:26:06 +02:00
|
|
|
workflow_dispatch:
|
2022-03-20 19:03:05 +01:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-03-20 20:42:55 +01:00
|
|
|
- dev
|
2022-03-20 19:32:20 +01:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-03-20 20:42:55 +01:00
|
|
|
- dev
|
2023-01-13 14:42:47 +01:00
|
|
|
|
2022-03-20 19:03:05 +01:00
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
name: Release
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-11-05 15:27:56 +01:00
|
|
|
uses: actions/checkout@v3
|
2022-03-20 19:03:05 +01:00
|
|
|
with:
|
2023-01-13 22:31:10 +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-20 19:03:05 +01:00
|
|
|
fetch-depth: 0
|
2023-06-12 02:55:09 +02:00
|
|
|
- name: Cache
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
${{ runner.home }}/.gradle/caches
|
|
|
|
${{ runner.home }}/.gradle/wrapper
|
|
|
|
.gradle
|
|
|
|
build
|
|
|
|
node_modules
|
|
|
|
key: ${{ runner.os }}-gradle-npm-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', 'package-lock.json') }}
|
2023-06-12 01:47:41 +02:00
|
|
|
- name: Build with Gradle
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2023-08-29 03:47:01 +02:00
|
|
|
run: ./gradlew build clean --no-daemon
|
2022-03-20 19:03:05 +01:00
|
|
|
- name: Setup semantic-release
|
2023-02-13 22:29:20 +01:00
|
|
|
run: npm install
|
2022-03-20 19:03:05 +01:00
|
|
|
- name: Release
|
|
|
|
env:
|
2023-01-15 05:29:50 +01:00
|
|
|
GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }}
|
2023-02-13 22:29:20 +01:00
|
|
|
run: npm exec semantic-release
|