Skip to content

update flutter-version #3

update flutter-version

update flutter-version #3

Workflow file for this run

# Name of the workflow
name: Build
# Controls what will trigger the workflow.
# Change it to your needs.
on:
# A new push to the "main" branch.
push:
branches: [ "production" ]
# A new pull request to the "main" branch.
pull_request:
branches: [ "production" ]
# A single workflow can have multiple jobs.
jobs:
# 'A new job is defined with the name: "build_android"
build_android:
# Defines what operating system will be used for the actions.
# For android, we will use Linux GitHub-Hosted Runner.
runs-on: ubuntu-22.04
# Defines what step should be passed for successful run
steps:
# Checkout to the selected branch
- name: Checkout
uses: actions/checkout@v4
# Download and install flutter packages
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
# Define which stable flutter version should be used
flutter-version: "3.19.5"
channel: 'stable'
# Enables cache for flutter packages
# Speed up the process
cache: true
# Get Flutter project dependencies
- name: Get dependencies
run: flutter pub get