revanced-patcher/.github/workflows/release.yml

51 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2022-03-20 19:03:05 +01:00
name: Release
2023-01-13 14:42:47 +01:00
2022-03-20 19:03:05 +01:00
on:
workflow_dispatch:
2022-03-20 19:03:05 +01:00
push:
branches:
- main
2022-03-20 20:42:55 +01:00
- dev
2023-01-13 14:42:47 +01:00
2022-03-20 19:03:05 +01:00
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
2023-09-27 18:02:50 +02:00
uses: actions/checkout@v4
2022-03-20 19:03:05 +01:00
with:
2023-01-13 22:31:10 +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-20 19:03:05 +01:00
fetch-depth: 0
2023-11-22 00:04:46 +01:00
- name: Cache Gradle
uses: burrunan/gradle-cache-action@v1
2023-11-22 00:04:46 +01:00
- name: Build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew build clean
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: 'npm'
2023-11-22 00:04:46 +01:00
- name: Install dependencies
2023-02-13 22:29:20 +01:00
run: npm install
2023-11-22 00:04:46 +01:00
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
2024-02-14 02:49:52 +01:00
passphrase: ${{ secrets.GPG_PASSPHRASE }}
fingerprint: ${{ env.GPG_FINGERPRINT }}
2022-03-20 19:03:05 +01:00
- name: Release
env:
2023-01-15 05:29:50 +01:00
GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }}
2023-02-13 22:29:20 +01:00
run: npm exec semantic-release