Skip to content

Update dart.yml

Update dart.yml #2

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Dart
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build_android:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.ACCESS_TOKEN }}
submodules: recursive
# Note: This workflow uses the latest stable version of the Dart SDK.
# You can specify other versions if desired, see documentation here:
# https://github.com/dart-lang/setup-dart/blob/main/README.md
# - uses: dart-lang/setup-dart@v1
- uses: dart-lang/setup-dart@9a04e6d73cca37bd455e0608d7e5092f881fd603
- name: Install dependencies
run: flutter pub get
- name: Building
run: flutter build apk --target-platform android-arm,android-arm64 --split-per-abi
- name: Upload APKs
run: |
mkdir -p artifacts
mv build/app/outputs/flutter-apk/*.apk artifacts/
shell: bash
- name: Archive build artifacts
uses: actions/upload-artifact@v3
with:
name: app-releases
path: artifacts/