2022-03-21 21:07:41 +01:00
|
|
|
name: Release
|
|
|
|
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
|
|
|
|
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
|
2022-10-31 15:15:14 +01:00
|
|
|
uses: actions/checkout@v3
|
2022-03-21 21:07:41 +01:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Setup JDK
|
2022-11-05 15:26:13 +01:00
|
|
|
uses: actions/setup-java@v3
|
2022-03-21 21:07:41 +01:00
|
|
|
with:
|
2022-05-07 21:26:33 +02:00
|
|
|
java-version: '17'
|
2022-12-05 23:03:48 +01:00
|
|
|
distribution: 'zulu'
|
2022-03-21 21:07:41 +01:00
|
|
|
cache: gradle
|
2022-12-05 23:03:48 +01:00
|
|
|
- name: Setup Node.js
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 'latest'
|
|
|
|
cache: 'npm'
|
2022-06-12 00:22:22 +02:00
|
|
|
- name: Setup Android SDK
|
2022-12-05 23:03:48 +01:00
|
|
|
uses: amyu/setup-android@v2
|
|
|
|
with:
|
|
|
|
cache-disabled: false
|
|
|
|
sdk-version: '33'
|
|
|
|
build-tools-version: '33.0.1'
|
2022-03-21 21:07:41 +01:00
|
|
|
- name: Build with Gradle
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2022-12-15 23:40:39 +01:00
|
|
|
run: ./gradlew generateMeta clean --no-daemon
|
2022-03-21 21:07:41 +01:00
|
|
|
- name: Setup semantic-release
|
2023-01-10 21:08:42 +01:00
|
|
|
run: npm install semantic-release@19.0.5 @saithodev/semantic-release-backmerge @semantic-release/git @semantic-release/changelog gradle-semantic-release-plugin@1.7.4 -D
|
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 }}
|
2022-03-21 21:07:41 +01:00
|
|
|
run: npx semantic-release
|