v0.25.1 #444
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build for Android | |
on: | |
# Enable manual run | |
workflow_dispatch: | |
push: | |
tags: | |
- '**' | |
branches: | |
- '**' | |
paths: | |
- .github/workflows/android.yml | |
jobs: | |
build-apk: | |
name: Build APK | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
build | |
key: ${{ runner.OS }}-saber-${{ hashFiles('**/pubspec.lock') }}-${{ hashFiles('**/*.dart') }} | |
restore-keys: | | |
${{ runner.OS }}-saber- | |
- name: Setup keystore | |
run: | | |
echo "${{ secrets.SIGNING_KEY }}" | base64 -d > android/android.keystore | |
echo "storePassword=${{ secrets.KEY_STORE_PASSWORD }}" > android/key.properties | |
echo "keyPassword=${{ secrets.KEY_PASSWORD }}" >> android/key.properties | |
echo "keyAlias=${{ secrets.ALIAS }}" >> android/key.properties | |
echo "storeFile=../android.keystore" >> android/key.properties | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
cache: true | |
cache-key: 'flutter-:os:-:channel:-:version:-:arch:' | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'microsoft' | |
java-version: '17' | |
- name: Disable Flutter CLI animations | |
run: flutter config --no-cli-animations | |
- run: flutter pub get | |
- name: Build apk | |
run: | | |
flutter build apk \ | |
--dart-define=DIRTY=$DIRTY | |
env: | |
DIRTY: ${{ !startsWith(github.ref, 'refs/tags/') }} | |
- name: Rename apk | |
id: rename_apk | |
run: | | |
buildName=$(grep -oP "(?<=buildName = ').*(?=')" lib/data/version.dart) | |
apkName="Saber_v${buildName}.apk" | |
echo "apkName=$apkName" >> $GITHUB_OUTPUT | |
mkdir -p output | |
mv build/app/outputs/flutter-apk/app-release.apk output/$apkName | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Saber-Android | |
path: output/${{ steps.rename_apk.outputs.apkName }} | |
- name: Upload to GitHub release | |
uses: svenstaro/upload-release-action@v2 | |
if: ${{ startsWith(github.ref, 'refs/tags/') }} | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: output/${{ steps.rename_apk.outputs.apkName }} | |
build-foss-apk: | |
name: Build FOSS APK | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
build | |
key: ${{ runner.OS }}-saberfoss-${{ hashFiles('**/pubspec.lock') }}-${{ hashFiles('**/*.dart') }} | |
restore-keys: | | |
${{ runner.OS }}-saberfoss- | |
- name: Remove proprietary dependencies | |
run: ./patches/remove_proprietary_dependencies.sh | |
- name: Setup keystore | |
run: | | |
echo "${{ secrets.SIGNING_KEY }}" | base64 -d > android/android.keystore | |
echo "storePassword=${{ secrets.KEY_STORE_PASSWORD }}" > android/key.properties | |
echo "keyPassword=${{ secrets.KEY_PASSWORD }}" >> android/key.properties | |
echo "keyAlias=${{ secrets.ALIAS }}" >> android/key.properties | |
echo "storeFile=../android.keystore" >> android/key.properties | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
cache: true | |
cache-key: 'flutter-:os:-:channel:-:version:-:arch:' | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'microsoft' | |
java-version: '17' | |
- name: Disable Flutter CLI animations | |
run: flutter config --no-cli-animations | |
- run: flutter pub get | |
- name: Build apk | |
run: | | |
flutter build apk \ | |
--dart-define=DIRTY=$DIRTY | |
env: | |
DIRTY: ${{ !startsWith(github.ref, 'refs/tags/') }} | |
- name: Rename apk | |
id: rename_apk | |
run: | | |
buildName=$(grep -oP "(?<=buildName = ').*(?=')" lib/data/version.dart) | |
apkName="Saber_FOSS_v${buildName}.apk" | |
echo "apkName=$apkName" >> $GITHUB_OUTPUT | |
mkdir -p output | |
mv build/app/outputs/flutter-apk/app-release.apk output/$apkName | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Saber-Android-FOSS | |
path: output/${{ steps.rename_apk.outputs.apkName }} | |
- name: Upload to GitHub release | |
uses: svenstaro/upload-release-action@v2 | |
if: ${{ startsWith(github.ref, 'refs/tags/') }} | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: output/${{ steps.rename_apk.outputs.apkName }} |