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

52 lines
1.1 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
pull_request:
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 Node modules
2023-06-12 02:55:08 +02:00
uses: actions/cache@v3
with:
path: |
node_modules
key: npm-${{ hashFiles('package-lock.json') }}
- 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 with Gradle
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
2023-06-12 01:48:29 +02:00
- name: Setup semantic-release
run: npm install
2023-11-22 00:04:11 +01:00
2023-06-12 01:48:29 +02:00
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }}
run: npm exec semantic-release