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
|
|
|
|
|
|
|
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
|
2023-09-27 18:02:48 +02:00
|
|
|
uses: actions/checkout@v4
|
2023-06-12 01:48:29 +02:00
|
|
|
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-11-22 00:04:11 +01:00
|
|
|
|
2023-11-22 00:45:41 +01:00
|
|
|
- name: Cache Gradle
|
|
|
|
uses: burrunan/gradle-cache-action@v1
|
2023-11-22 00:04:11 +01:00
|
|
|
|
2023-06-12 02:45:13 +02:00
|
|
|
- name: Setup Java
|
|
|
|
run: echo "JAVA_HOME=$JAVA_HOME_17_X64" >> $GITHUB_ENV
|
2023-11-22 00:04:11 +01:00
|
|
|
|
2024-01-26 22:52:36 +01:00
|
|
|
- name: Build
|
2023-06-12 01:50:04 +02:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2023-07-21 19:17:06 +02:00
|
|
|
run: ./gradlew build clean
|
2023-11-22 00:04:11 +01:00
|
|
|
|
2024-01-26 22:52:36 +01:00
|
|
|
- name: Setup Node.js
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version: "lts/*"
|
|
|
|
cache: 'npm'
|
|
|
|
|
|
|
|
- name: Install dependencies
|
2023-06-12 01:48:29 +02:00
|
|
|
run: npm install
|
2023-11-22 00:04:11 +01:00
|
|
|
|
2024-02-22 06:13:17 +01:00
|
|
|
- name: Import GPG key
|
|
|
|
uses: crazy-max/ghaction-import-gpg@v6
|
|
|
|
with:
|
|
|
|
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
|
|
|
passphrase: ${{ secrets.GPG_PASSPHRASE }}
|
|
|
|
fingerprint: ${{ env.GPG_FINGERPRINT }}
|
|
|
|
|
2023-06-12 01:48:29 +02:00
|
|
|
- name: Release
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }}
|
|
|
|
run: npm exec semantic-release
|