2023-05-02 16:50:07 +02:00
|
|
|
name: "Release Build"
|
|
|
|
|
|
|
|
on:
|
2024-01-22 09:29:57 +01:00
|
|
|
workflow_dispatch:
|
2023-05-02 16:50:07 +02:00
|
|
|
push:
|
2024-01-22 09:29:57 +01:00
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- dev
|
2024-01-29 03:19:56 +01:00
|
|
|
paths:
|
|
|
|
- ".github/workflows/release-build.yml"
|
|
|
|
- "android/**"
|
|
|
|
- "assets/**"
|
|
|
|
- "lib/**"
|
|
|
|
- "pubspec.yaml"
|
2024-02-01 02:57:15 +01:00
|
|
|
|
2023-05-02 16:50:07 +02: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
|
2023-12-05 03:43:04 +01:00
|
|
|
uses: actions/setup-java@v4
|
2023-05-02 16:50:07 +02:00
|
|
|
with:
|
2023-10-28 16:19:07 +02:00
|
|
|
java-version: "17"
|
2023-05-02 16:50:07 +02:00
|
|
|
distribution: "zulu"
|
2024-01-22 09:29:57 +01:00
|
|
|
|
2024-02-18 22:58:29 +01:00
|
|
|
- name: Set up Node.js 20
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version: '20'
|
|
|
|
|
2023-05-02 16:50:07 +02:00
|
|
|
- uses: subosito/flutter-action@v2
|
|
|
|
with:
|
|
|
|
channel: "stable"
|
2024-01-22 09:29:57 +01:00
|
|
|
|
|
|
|
- name: Cache Node modules
|
2024-02-02 05:38:53 +01:00
|
|
|
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
|
|
|
|
|
2023-05-02 16:50:07 +02:00
|
|
|
- name: Set up Flutter
|
|
|
|
run: flutter pub get
|
2024-02-12 00:22:25 +01:00
|
|
|
- name: Generate translation with Slang
|
|
|
|
run: dart run slang
|
2023-05-02 16:50:07 +02:00
|
|
|
- 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
|
|
|
|
2023-05-02 16:50:07 +02:00
|
|
|
- name: Build with Flutter
|
2024-02-01 02:57:15 +01:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
signingKey: "keystore.jks"
|
2023-05-02 16:50:07 +02:00
|
|
|
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
|