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

50 lines
1.3 KiB
YAML
Raw Normal View History

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
pull_request:
branches:
- main
- dev
2023-01-13 14:41:37 +01:00
2022-03-21 21:07:41 +01:00
jobs:
release:
name: Release
2022-12-05 23:03:48 +01:00
runs-on: ubuntu-latest
2022-03-21 21:07:41 +01:00
steps:
- name: Checkout
uses: actions/checkout@v3
2022-03-21 21:07:41 +01:00
with:
fetch-depth: 0
- name: Setup JDK
uses: actions/setup-java@v3
2022-03-21 21:07:41 +01:00
with:
java-version: '17'
2022-12-05 23:03:48 +01:00
distribution: 'zulu'
2022-03-21 21:07:41 +01:00
cache: gradle
2022-12-05 23:03:48 +01:00
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 'latest'
cache: 'npm'
- name: Setup Android SDK
2022-12-05 23:03:48 +01:00
uses: amyu/setup-android@v2
with:
cache-disabled: false
sdk-version: '33'
build-tools-version: '33.0.1'
2022-03-21 21:07:41 +01:00
- name: Build with Gradle
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew generateMeta clean --no-daemon
2022-03-21 21:07:41 +01:00
- name: Setup semantic-release
run: npm install semantic-release@19.0.5 @saithodev/semantic-release-backmerge @semantic-release/git @semantic-release/changelog gradle-semantic-release-plugin@1.7.4 -D
2022-03-21 21:07:41 +01:00
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }}
2022-03-21 21:07:41 +01:00
run: npx semantic-release