2022-05-07 05:43:56 +02:00
|
|
|
name: Release
|
2023-01-13 14:41:38 +01:00
|
|
|
|
2022-05-07 05:43:56 +02:00
|
|
|
on:
|
2022-05-27 12:25:44 +02:00
|
|
|
workflow_dispatch:
|
2022-05-07 05:43:56 +02:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-05-07 21:19:01 +02:00
|
|
|
- dev
|
2022-05-07 05:43:56 +02:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-05-07 21:19:01 +02:00
|
|
|
- dev
|
2023-01-13 14:41:38 +01:00
|
|
|
|
2022-05-07 05:43:56 +02:00
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
name: Release
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-27 18:02:51 +02:00
|
|
|
uses: actions/checkout@v4
|
2022-05-07 05:43:56 +02:00
|
|
|
with:
|
2023-01-13 22:31:11 +01:00
|
|
|
# Make sure the release step uses its own credentials:
|
|
|
|
# https://github.com/cycjimmy/semantic-release-action#private-packages
|
|
|
|
persist-credentials: false
|
2022-05-07 05:43:56 +02:00
|
|
|
fetch-depth: 0
|
2023-11-22 00:04:47 +01:00
|
|
|
|
2023-11-22 00:45:44 +01:00
|
|
|
- name: Cache Gradle
|
|
|
|
uses: burrunan/gradle-cache-action@v1
|
2023-11-22 00:04:47 +01:00
|
|
|
|
2023-08-24 15:35:21 +02:00
|
|
|
- name: Build
|
2023-06-12 01:50:05 +02:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2024-01-26 22:52:38 +01:00
|
|
|
run: ./gradlew build clean
|
|
|
|
|
|
|
|
- name: Setup Node.js
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version: "lts/*"
|
|
|
|
cache: 'npm'
|
2023-11-22 00:04:47 +01:00
|
|
|
|
2024-01-26 22:52:38 +01:00
|
|
|
- name: Install dependencies
|
2023-02-14 04:35:05 +07:00
|
|
|
run: npm install
|
2023-11-22 00:04:47 +01:00
|
|
|
|
2023-01-18 00:44:39 +01:00
|
|
|
- name: Release
|
2022-05-07 05:43:56 +02:00
|
|
|
env:
|
2023-01-18 00:44:39 +01:00
|
|
|
GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }}
|
2023-02-14 04:35:05 +07:00
|
|
|
run: npm exec semantic-release
|