Release 2.4.1: five answers to the intraday chart feedback #2
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
| name: pub.dev dry run | |
| on: | |
| pull_request: | |
| paths: | |
| - pubspec.yaml | |
| - CHANGELOG.md | |
| - lib/** | |
| - doc/** | |
| - README.md | |
| - LICENSE | |
| workflow_dispatch: | |
| jobs: | |
| dry-run: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: stable | |
| - run: flutter pub get | |
| # Catches what actually blocks or downgrades a pub.dev score before it | |
| # reaches a release: a pubspec version the CHANGELOG doesn't have an | |
| # entry for, a missing/invalid LICENSE, an oversized or unpublishable | |
| # asset, and any other publish-time validation error. | |
| - run: flutter pub publish --dry-run |