Skip to content

bump to 3.6.2

bump to 3.6.2 #21

Workflow file for this run

name: Publish to pub.dev
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
jobs:
publish:
name: 'Publish to pub.dev'
permissions:
id-token: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dart-lang/setup-dart@v1
- name: Setup Flutter SDK
uses: flutter-actions/setup-flutter@v4
with:
channel: stable
cache: true
- name: Install dependencies
run: flutter pub get
- name: Publish - dry run
run: flutter pub publish --dry-run
- name: Publish to pub.dev
run: flutter pub publish -f