Skip to content

Color changes

Color changes #4

Workflow file for this run

name: Android Flutter Build
on:
push:
branches:
- main
jobs:
build:
name: Build Android
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Cache Flutter dependencies
uses: actions/cache@v2
with:
path: ~/.pub-cache
key: ${{ runner.os }}-flutter-${{ hashFiles('**/pubspec.lock') }}
restore-keys: |
${{ runner.os }}-flutter-
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.10.5' # My current version of flutter
- name: Get dependencies
run: flutter pub get
- name: Build APK
run: flutter build apk
- name: Archive artifacts
uses: actions/upload-artifact@v2
with:
name: app-release
path: build/app/outputs/flutter-apk/app-release.apk