Build #157
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
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 11 * * *' | |
name: Build | |
env: | |
FLUTTER_VERSION: 3.7.7 | |
jobs: | |
build_debug: | |
name: Build debug version | |
runs-on: ${{ matrix.runner }} | |
strategy: | |
matrix: | |
include: | |
- os: android | |
runner: ubuntu-latest | |
- os: ios | |
runner: macos-latest | |
fail-fast: false | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ env.FLUTTER_VERSION }} | |
channel: "stable" | |
cache: true | |
- name: Setup Fastlane | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ruby | |
bundler-cache: true | |
working-directory: ${{ matrix.os }} | |
- uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.SSH_KEY }} | |
- name: Setup Java | |
if: matrix.os == 'android' | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "temurin" # See 'Supported distributions' for available options | |
java-version: "11" | |
- name: Setup iOS | |
if: matrix.os == 'ios' | |
run: ./scripts/prepare-ios.sh | |
- name: Build debug APK | |
if: matrix.os == 'android' | |
run: | | |
./scripts/build-android-debug.sh | |
cp build/app/outputs/apk/debug/app-debug.apk twake-on-matrix-debug.apk | |
- name: Build debug IPA | |
if: matrix.os == 'ios' | |
env: | |
APPLE_CERTIFICATES_SSH_KEY: ${{ secrets.APPLE_CERTIFICATES_SSH_KEY }} | |
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }} | |
run: | | |
bundle exec fastlane dev | |
cp Runner.ipa ../Runner.ipa | |
working-directory: ${{ matrix.os }} | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: twake-on-matrix-dev | |
path: | | |
twake-on-matrix-debug.apk | |
Runner.ipa |