2022-05-10 01:36:28 +02:00
|
|
|
name: Release
|
|
|
|
|
|
|
|
on:
|
2022-06-24 00:55:50 +02:00
|
|
|
workflow_dispatch:
|
2022-05-10 01:36:28 +02:00
|
|
|
push:
|
2023-02-13 04:44:07 +01:00
|
|
|
branches:
|
2022-05-10 01:36:28 +02:00
|
|
|
- main
|
2022-07-02 06:18:52 +02:00
|
|
|
- dev
|
2022-05-10 01:36:28 +02:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-07-02 06:18:52 +02:00
|
|
|
- dev
|
2022-05-10 01:36:28 +02:00
|
|
|
|
|
|
|
jobs:
|
2023-01-13 14:40:44 +01:00
|
|
|
release:
|
|
|
|
name: Release
|
2022-05-10 01:36:28 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-06-12 01:48:29 +02:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
# Make sure the release step uses its own credentials:
|
|
|
|
# https://github.com/cycjimmy/semantic-release-action#private-packages
|
|
|
|
persist-credentials: false
|
|
|
|
fetch-depth: 0
|
2023-06-12 01:50:04 +02:00
|
|
|
- name: Build with Gradle
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
run: ./gradlew clean --no-daemon
|
2023-06-12 01:48:29 +02:00
|
|
|
- name: Setup semantic-release
|
|
|
|
run: npm install
|
|
|
|
- name: Release
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }}
|
|
|
|
run: npm exec semantic-release
|