Fix Github build process #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Flutter CI | |
# This workflow is triggered on pushes to the repository. | |
on: | |
push: | |
branches: | |
- releases | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
description: 'Log level' | |
required: true | |
default: 'warning' | |
# 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@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: '20' | |
# Setup the flutter environment. | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' # 'dev', 'alpha', default to: 'stable' | |
# Get flutter dependencies. | |
- name: Get Dependencies | |
working-directory: ./PixLeZ_Application | |
run: flutter pub get | |
# Build apk. Those 3 steps are necessary due to a bug in newer versions (https://stackoverflow.com/questions/62394034/flutter-can-not-build-android-apk) | |
- name: Build APK | |
working-directory: ./PixLeZ_Application | |
run: | | |
flutter build apk --debug | |
flutter build apk --profile | |
flutter build apk --release | |
# Upload generated apk to the artifacts. | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: PixLeZ | |
path: PixLeZ_Application/build/app/outputs/flutter-apk/app-release.apk |