Skip to content

Instantly share code, notes, and snippets.

View diego-rib's full-sized avatar

Diego Ribeiro diego-rib

View GitHub Profile
@diego-rib
diego-rib / flutter_build_apk.yml
Last active May 20, 2025 12:29
YAML file containing an action for Github Actions to analyze, test, build and publish a Flutter App as guided by the article https://prasadsunny1.medium.com/minimal-ci-cd-setup-with-flutter-and-github-actions-part-1-3fffa0e71201
# Note: In a yml each level is padded by 2 spaces
name: Flutter
on:
# Runs this action when you push on master
push:
branches: ["main"]
# Runs this when a PR against master is created
pull_request:
branches: ["main"]