Skip to content

updating example project flutter requirements && the github action ma… #5

updating example project flutter requirements && the github action ma…

updating example project flutter requirements && the github action ma… #5

Workflow file for this run

name: Android Release
# 1
on:
# 2
push:
branches: '*'
# pull_request:
# branches: [ "master" ]
# 3
workflow_dispatch:
# 4
jobs:
# 5
build:
# 6
runs-on: ubuntu-latest
# 7
steps:
# 8
- uses: actions/checkout@v3
# 9
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: "12.x"
cache: 'gradle'
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
# 12
- name: Get dependencies
run: cd example && flutter pub get
# Runs a set of commands using the runners shell
- name: Start release build
run: |
flutter build appbundle