2022-03-21 20:07:41 +00:00
|
|
|
name: Release
|
2023-01-13 13:41:37 +00:00
|
|
|
|
2022-03-21 20:07:41 +00:00
|
|
|
on:
|
2022-05-22 15:26:22 +00:00
|
|
|
workflow_dispatch:
|
2022-03-21 20:07:41 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- dev
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- dev
|
2023-01-13 13:41:37 +00:00
|
|
|
|
2022-03-21 20:07:41 +00:00
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
name: Release
|
2022-12-05 22:03:48 +00:00
|
|
|
runs-on: ubuntu-latest
|
2022-03-21 20:07:41 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-10-31 14:15:14 +00:00
|
|
|
uses: actions/checkout@v3
|
2022-03-21 20:07:41 +00:00
|
|
|
with:
|
2023-01-13 21:23:17 +00: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 20:07:41 +00:00
|
|
|
fetch-depth: 0
|
|
|
|
- name: Setup JDK
|
2022-11-05 14:26:13 +00:00
|
|
|
uses: actions/setup-java@v3
|
2022-03-21 20:07:41 +00:00
|
|
|
with:
|
2022-05-07 19:26:33 +00:00
|
|
|
java-version: '17'
|
2022-12-05 22:03:48 +00:00
|
|
|
distribution: 'zulu'
|
2022-03-21 20:07:41 +00:00
|
|
|
cache: gradle
|
2022-12-05 22:03:48 +00:00
|
|
|
- name: Setup Node.js
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
2023-02-13 01:45:55 +00:00
|
|
|
node-version: '18'
|
2022-12-05 22:03:48 +00:00
|
|
|
cache: 'npm'
|
2022-06-11 22:22:22 +00:00
|
|
|
- name: Setup Android SDK
|
2022-12-05 22:03:48 +00:00
|
|
|
uses: amyu/setup-android@v2
|
|
|
|
with:
|
|
|
|
cache-disabled: false
|
|
|
|
sdk-version: '33'
|
|
|
|
build-tools-version: '33.0.1'
|
2022-03-21 20:07:41 +00:00
|
|
|
- name: Build with Gradle
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2022-12-15 22:40:39 +00:00
|
|
|
run: ./gradlew generateMeta clean --no-daemon
|
2022-03-21 20:07:41 +00:00
|
|
|
- name: Setup semantic-release
|
2023-02-13 01:44:34 +00:00
|
|
|
run: npm install
|
2022-03-21 20:07:41 +00:00
|
|
|
- name: Release
|
|
|
|
env:
|
2023-01-10 20:37:15 +00:00
|
|
|
GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }}
|
2023-02-13 01:45:55 +00:00
|
|
|
run: npm exec semantic-release
|