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

54 lines
1.3 KiB
YAML
Raw Normal View History

name: Release
on:
2022-06-24 00:55:50 +02:00
workflow_dispatch:
push:
branches:
- main
2022-07-02 06:18:52 +02:00
- dev
jobs:
release:
name: Release
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
- name: Cache Gradle
uses: burrunan/gradle-cache-action@v1
2023-11-22 00:04:11 +01:00
- name: Setup Java
run: echo "JAVA_HOME=$JAVA_HOME_17_X64" >> $GITHUB_ENV
2023-11-22 00:04:11 +01:00
- name: Build
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
- 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