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
|
2022-10-13 17:35:24 +02:00
|
|
|
uses: actions/checkout@v3
|
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-06-12 02:33:13 +02:00
|
|
|
- name: Cache
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
${{ runner.home }}/.gradle/caches
|
|
|
|
${{ runner.home }}/.gradle/wrapper
|
|
|
|
.gradle
|
|
|
|
build
|
|
|
|
node_modules
|
|
|
|
key: ${{ runner.os }}-gradle-npm-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', 'package-lock.json') }}
|
2023-08-24 15:35:21 +02:00
|
|
|
- name: Build
|
2023-06-12 01:50:05 +02:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2023-08-24 15:35:21 +02:00
|
|
|
# Cleaning is necessary to avoid uploading two identical artifacts with different versions
|
|
|
|
run: ./gradlew clean --no-daemon
|
2022-05-07 05:43:56 +02:00
|
|
|
- name: Setup semantic-release
|
2023-02-13 22:35:05 +01:00
|
|
|
run: npm install
|
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-13 22:35:05 +01:00
|
|
|
run: npm exec semantic-release
|