revanced-manager/.github/workflows/release-build.yml

64 lines
1.6 KiB
YAML
Raw Normal View History

name: "Release Build"
on:
2024-01-22 09:29:57 +01:00
workflow_dispatch:
push:
2024-01-22 09:29:57 +01:00
branches:
- main
- dev
paths:
- ".github/workflows/release-build.yml"
- "android/**"
- "assets/**"
- "lib/**"
- "pubspec.yaml"
2024-02-01 02:57:15 +01:00
jobs:
release:
runs-on: ubuntu-latest
steps:
2023-09-10 09:43:58 +02:00
- uses: actions/checkout@v4
2024-01-22 09:29:57 +01:00
2023-10-28 16:19:07 +02:00
- name: Set up JDK
uses: actions/setup-java@v4
with:
2023-10-28 16:19:07 +02:00
java-version: "17"
distribution: "zulu"
2024-01-22 09:29:57 +01:00
- name: Set up Node.js 20
uses: actions/setup-node@v4
with:
node-version: '20'
- uses: subosito/flutter-action@v2
with:
channel: "stable"
2024-01-22 09:29:57 +01:00
- name: Cache Node modules
uses: actions/cache@v4
2024-01-22 09:29:57 +01:00
with:
path: |
node_modules
key: npm-${{ hashFiles('package-lock.json') }}
- name: Setup semantic-release
run: npm install
- name: Set up Flutter
run: flutter pub get
- name: Generate translation with Slang
run: dart run slang
- name: Generate files with Builder
2023-11-11 11:14:54 +01:00
run: dart run build_runner build --delete-conflicting-outputs
2024-01-22 09:29:57 +01:00
- name: Build with Flutter
2024-02-01 02:57:15 +01:00
env:
GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }}
2024-02-01 02:57:15 +01:00
signingKey: "keystore.jks"
keyStorePassword: ${{ secrets.SIGNING_KEYSTORE_PASSWORD }}
keyAlias: ${{ secrets.SIGNING_KEY_ALIAS }}
keyPassword: ${{ secrets.SIGNING_KEY_PASSWORD }}
2024-02-01 02:57:15 +01:00
run: |
echo "${{ secrets.SIGNING_KEYSTORE }}" | base64 --decode > android/app/keystore.jks
npx semantic-release