Skip to content

v1.0.1

v1.0.1 #8

Workflow file for this run

name: Flutter build
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.16.9'
- name: Get dependencies
run: flutter pub get
- name: Build for Android
run: flutter build apk --split-per-abi --release
- name: Build for web
run: flutter build web
- name: Archive android
uses: actions/upload-artifact@v2
with:
name: android build
path: build/app/outputs/flutter-apk/
- name: Archive web
uses: actions/upload-artifact@v2
with:
name: web build
path: build/web