bump pubspec. #13
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # How to publish a new version: | |
| # 1. Bump version in pubspec.yaml (e.g., 0.2.0) | |
| # 2. Update CHANGELOG.md | |
| # 3. Commit and push to main | |
| # 4. Tag and push: | |
| # git tag v0.2.0 | |
| # git push origin v0.2.0 | |
| name: Publish to pub.dev | |
| on: | |
| push: | |
| tags: | |
| - 'v[0-9]+.[0-9]+.[0-9]+' | |
| jobs: | |
| publish: | |
| permissions: | |
| id-token: write | |
| uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1 |