Skip to content

Instantly share code, notes, and snippets.

@aagarwal1012
Last active March 23, 2024 11:54
Show Gist options
  • Save aagarwal1012/eb2551683d81cf47d60868ab607520b1 to your computer and use it in GitHub Desktop.
Save aagarwal1012/eb2551683d81cf47d60868ab607520b1 to your computer and use it in GitHub Desktop.
CI for your Flutter apps on GitHub Actions.
name: Flutter CI
# This workflow is triggered on pushes to the repository.
on:
push:
branches:
- master
# 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:
channel: 'beta' # 'dev', 'alpha', default to: 'stable'
# flutter-version: '1.12.x' # 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 --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
@apoorvpandey0
Copy link

where is this stored?
I had added build to gitigcnore in my main project

@amlang
Copy link

amlang commented Jul 10, 2021

Usually in your .github/workflows folder. If you create the gha via github, the folder is created automatically.

https://docs.github.com/en/actions

@alvindrakes
Copy link

This github workflow create android apk, any examples on how to create iOS IPA file and upload to testflight without using Fastlane?

Appreciate any pointers.

@mohamadhadibi
Copy link

keep facing this error :
The "format" command is deprecated and will be removed in a future version of Flutter. Please use the "dart format" sub-command instead, which takes all of the same command-line arguments as "flutter format".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment