Skip to content

AcmeSoftwareLLC/flutter-build

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flutter Build Action

This action builds Flutter artifacts for provided platform.

Usage

Non-Web Build

steps:
  - name: Build Android bundle
    uses: AcmeSoftwareLLC/flutter-build@v1
    with:
      platform: android
      build-name: 1.0.0
      build-number: 20231005
      dart-define-file: configs/.env.production
      pub-get: true
      gen-icons: false

Web Build

steps:
  - name: Build Web
    uses: AcmeSoftwareLLC/flutter-build@v1
    with:
      platform: web
      base-href: /my-app/
      dart-define-file: configs/.env.production