Skip to content

v0.24.0

v0.24.0 #5

Workflow file for this run

# https://dart.dev/tools/pub/automated-publishing#publishing-packages-using-github-actions
# .github/workflows/pub.yml
name: Publish to pub.dev
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*' # tag pattern on pub.dev: 'v{{version}'
# Publish using custom workflow
jobs:
publish:
permissions:
id-token: write # Required for authentication using OIDC
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
- uses: dart-lang/setup-dart@v1
# Here you can insert custom steps you need
# - run: dart tool/generate-code.dart
- name: Publish
run: dart pub publish --force