Skip to content

Instantly share code, notes, and snippets.

@marcos-bah
Created July 12, 2021 19:37
Show Gist options
  • Select an option

  • Save marcos-bah/125e2d18fdcbeddea5c2d4b65bd08acd to your computer and use it in GitHub Desktop.

Select an option

Save marcos-bah/125e2d18fdcbeddea5c2d4b65bd08acd to your computer and use it in GitHub Desktop.
Action para modo dev, build para android apk - flutter
# https://github.com/marcos-bah/
name: Flutter Development CI
# This workflow is triggered on pushes to the repository.
on:
push:
branches:
# pode usar main, para mais de uma, usar []
- development
# 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@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
# Setup the flutter environment.
- uses: subosito/flutter-action@v1
with:
flutter-version: '2.0.6' # you can also specify exact version of flutter
# Get flutter dependencies.
- run: flutter pub get
# Check for any formatting issues in the code.
- run: flutter format lib/** --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@v1
with:
name: release-apk
path: build/app/outputs/apk/release/app-release.apk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment