Skip to content

updated build action #172

updated build action

updated build action #172

Workflow file for this run

name: build
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: 'Setup Flutter'
uses: subosito/flutter-action@v2
with:
flutter-version: '3.13.9'
channel: 'stable'
- name: 'Get Packages'
run: flutter pub get
- name: 'Dry Run Publishing'
run: flutter packages pub publish --dry-run
- name: 'Publish Artifact'
run: flutter packages pub publish --force