Skip to content
This repository has been archived by the owner on Oct 13, 2024. It is now read-only.

final fix candidate 6 #65

final fix candidate 6

final fix candidate 6 #65

Workflow file for this run

name: build
# This workflow is triggered on pushes to the repository.
on:
push:
# on: push # Default will running for every branch.
jobs:
build:
# This job will run on ubuntu virtual machine
runs-on: ubuntu-latest
steps:
# Setup Java environment in order to build the Android app.
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: '12.x'
# Setup the flutter environment.
- uses: subosito/flutter-action@v1
with:
channel: 'stable' # 'dev', 'alpha', default to: 'stable'
# flutter-version: '1.12.x' # you can also specify exact version of flutter
- run : cd example
# Get flutter dependencies.
- run: flutter pub get
# Build apk.
- run: flutter build apk
# Upload generated apk to the artifacts.
- uses: actions/upload-artifact@v1
with:
name: release-apk
path: build/app/outputs/apk/release/app-release.apk