Edited version number for upload-artifact #7
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: | |
- main | |
# 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/[email protected] | |
- uses: actions/[email protected] | |
with: | |
distribution: 'zulu' # See 'Supported distributions' for available options | |
java-version: '12.x' | |
cache: 'gradle' | |
# Setup the flutter environment. | |
- uses: subosito/[email protected] | |
with: | |
channel: 'stable' # 'dev', 'alpha', default to: 'stable' | |
# flutter-version: '1.12.x' # you can also specify exact version of flutter | |
cache: true | |
# Get flutter dependencies. | |
- run: flutter pub get | |
# Check for any formatting issues in the code. | |
# - run: flutter format --set-exit-if-changed . | |
# Statically analyze the Dart code for any errors. | |
- run: flutter analyze . | |
# Run widget tests for our flutter project. | |
# - run: flutter test | |
# Build apk. | |
- run: flutter build apk | |
# Upload generated apk to the artifacts. | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: release-apk | |
path: build/app/outputs/apk/release/app-release.apk |