Skip to content

Commit

Permalink
Build app
Browse files Browse the repository at this point in the history
  • Loading branch information
a-mabe committed Jul 20, 2023
1 parent 109ce06 commit 3724523
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build Flutter App

run-name: ${{ github.actor }} is building the app 🚀

on: [push]
# pull_request:
# types:
# - opened
# - reopened
# - synchronize
# - ready_for_review
# branches:
# - 'main'
# paths-ignore:
# - '**.md'
# - 'doc/**'
# - '.git/'
# - '.vscode/'

jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '11'
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- run: flutter pub get
# - run: flutter test
# - run: flutter build apk
# - run: flutter build appbundle

0 comments on commit 3724523

Please sign in to comment.