revanced-patches-tasker/.github/workflows/release.yml

45 lines
1.2 KiB
YAML
Raw Normal View History

2022-03-21 20:07:41 +00:00
name: Release
2023-01-13 13:41:37 +00:00
2022-03-21 20:07:41 +00:00
on:
2022-05-22 15:26:22 +00:00
workflow_dispatch:
2022-03-21 20:07:41 +00:00
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
2023-01-13 13:41:37 +00:00
2022-03-21 20:07:41 +00:00
jobs:
release:
name: Release
2022-12-05 22:03:48 +00:00
runs-on: ubuntu-latest
2022-03-21 20:07:41 +00:00
steps:
- name: Checkout
2023-09-27 16:02:48 +00:00
uses: actions/checkout@v4
2022-03-21 20:07:41 +00:00
with:
2023-01-13 21:23:17 +00: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 20:07:41 +00:00
fetch-depth: 0
2023-06-12 00:55:10 +00:00
- name: Cache
uses: actions/cache@v3
with:
path: |
${{ runner.home }}/.gradle/caches
${{ runner.home }}/.gradle/wrapper
.gradle
node_modules
key: ${{ runner.os }}-gradle-npm-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', 'package-lock.json') }}
2022-03-21 20:07:41 +00:00
- name: Build with Gradle
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2023-07-21 17:17:06 +00:00
run: ./gradlew generateMeta clean
2022-03-21 20:07:41 +00:00
- name: Setup semantic-release
2023-02-13 01:44:34 +00:00
run: npm install
2022-03-21 20:07:41 +00:00
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }}
2023-02-13 01:45:55 +00:00
run: npm exec semantic-release