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
|
2023-01-13 14:41:37 +01:00
|
|
|
|
2022-03-21 21:07:41 +01:00
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
name: Release
|
2024-09-30 23:41:48 +02:00
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
packages: write
|
2022-12-05 23:03:48 +01:00
|
|
|
runs-on: ubuntu-latest
|
2022-03-21 21:07:41 +01:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-27 18:02:48 +02:00
|
|
|
uses: actions/checkout@v4
|
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
|
2023-11-22 00:04:12 +01:00
|
|
|
|
2023-11-22 00:45:42 +01:00
|
|
|
- name: Cache Gradle
|
|
|
|
uses: burrunan/gradle-cache-action@v1
|
2023-11-22 00:04:12 +01:00
|
|
|
|
2024-01-26 22:52:37 +01:00
|
|
|
- name: Build
|
2022-03-21 21:07:41 +01:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2023-07-21 19:17:06 +02:00
|
|
|
run: ./gradlew generateMeta clean
|
2023-11-22 00:04:12 +01:00
|
|
|
|
2024-01-26 22:52:37 +01:00
|
|
|
- name: Setup Node.js
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version: "lts/*"
|
|
|
|
cache: 'npm'
|
|
|
|
|
|
|
|
- name: Install dependencies
|
2023-02-13 02:44:34 +01:00
|
|
|
run: npm install
|
2023-11-22 00:04:12 +01:00
|
|
|
|
2024-02-15 04:38:06 +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 }}
|
2024-07-13 00:43:59 +02:00
|
|
|
fingerprint: ${{ vars.GPG_FINGERPRINT }}
|
2024-02-15 04:38:06 +01:00
|
|
|
|
2022-03-21 21:07:41 +01:00
|
|
|
- name: Release
|
|
|
|
env:
|
2024-09-30 23:41:48 +02:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2023-02-13 02:45:55 +01:00
|
|
|
run: npm exec semantic-release
|