105 lines
4.0 KiB
YAML
105 lines
4.0 KiB
YAML
name: "Release (photos independent)"
|
|
|
|
on:
|
|
workflow_dispatch: # Allow manually running the action
|
|
push:
|
|
# Run when a tag matching the pattern "photos-v*"" is pushed
|
|
# See: [Note: Testing release workflows that are triggered by tags]
|
|
tags:
|
|
- "photos-v*"
|
|
|
|
env:
|
|
FLUTTER_VERSION: "3.32.8"
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: mobile/apps/photos
|
|
|
|
steps:
|
|
- name: Checkout code and submodules
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Free up disk space
|
|
run: |
|
|
echo "Initial disk usage:"
|
|
df -h /
|
|
# Get available space in KB
|
|
INITIAL=$(df / | awk 'NR==2 {print $4}')
|
|
|
|
echo -e "\n=== Removing .NET SDK (~20-25GB) ==="
|
|
BEFORE=$(df / | awk 'NR==2 {print $4}')
|
|
START=$(date +%s)
|
|
sudo rm -rf /usr/share/dotnet
|
|
END=$(date +%s)
|
|
AFTER=$(df / | awk 'NR==2 {print $4}')
|
|
FREED=$(( (AFTER - BEFORE) / 1048576 )) # Convert KB to GB
|
|
echo "Time: $((END-START))s | Freed: ${FREED}GB"
|
|
|
|
echo -e "\n=== Removing cached tools (~5-10GB) ==="
|
|
BEFORE=$(df / | awk 'NR==2 {print $4}')
|
|
START=$(date +%s)
|
|
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
|
|
END=$(date +%s)
|
|
AFTER=$(df / | awk 'NR==2 {print $4}')
|
|
FREED=$(( (AFTER - BEFORE) / 1048576 ))
|
|
echo "Time: $((END-START))s | Freed: ${FREED}GB"
|
|
|
|
echo -e "\n=== Final Summary ==="
|
|
FINAL=$(df / | awk 'NR==2 {print $4}')
|
|
TOTAL_FREED=$(( (FINAL - INITIAL) / 1048576 ))
|
|
echo "Total space freed: ${TOTAL_FREED}GB"
|
|
echo "Final disk usage:"
|
|
df -h /
|
|
|
|
- name: Setup JDK 17
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 17
|
|
|
|
- name: Install Flutter ${{ env.FLUTTER_VERSION }}
|
|
uses: subosito/flutter-action@v2
|
|
with:
|
|
channel: "stable"
|
|
flutter-version: ${{ env.FLUTTER_VERSION }}
|
|
cache: true
|
|
|
|
- name: Install Flutter Rust Bridge
|
|
run: cargo install flutter_rust_bridge_codegen
|
|
|
|
- name: Generate Rust bindings
|
|
run: flutter_rust_bridge_codegen generate
|
|
|
|
- name: Setup keys
|
|
uses: timheuer/base64-to-file@v1
|
|
with:
|
|
fileName: "keystore/ente_photos_key.jks"
|
|
encodedString: ${{ secrets.SIGNING_KEY_PHOTOS }}
|
|
|
|
- name: Build independent APK
|
|
run: |
|
|
flutter build apk --dart-define=cronetHttpNoPlay=true --release --flavor independent
|
|
mv build/app/outputs/flutter-apk/app-independent-release.apk build/app/outputs/flutter-apk/ente-${{ github.ref_name }}.apk
|
|
env:
|
|
SIGNING_KEY_PATH: "/home/runner/work/_temp/keystore/ente_photos_key.jks"
|
|
SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS_PHOTOS }}
|
|
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD_PHOTOS }}
|
|
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD_PHOTOS }}
|
|
|
|
- name: Checksum
|
|
run: sha256sum build/app/outputs/flutter-apk/ente-${{ github.ref_name }}.apk > build/app/outputs/flutter-apk/sha256sum
|
|
|
|
- name: Create a draft GitHub release
|
|
uses: ncipollo/release-action@v1
|
|
with:
|
|
artifacts: "mobile/apps/photos/build/app/outputs/flutter-apk/ente-${{ github.ref_name }}.apk,mobile/apps/photos/build/app/outputs/flutter-apk/sha256sum"
|
|
draft: true
|