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
|
2022-10-31 15:15:14 +01:00
|
|
|
uses: actions/checkout@v3
|
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
|
|
|
|
- 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-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
|