bump to 6.0.0-preview.9 #45
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: Publish to pub.dev | |
| on: | |
| push: | |
| tags: | |
| - 'v[0-9]+.[0-9]+.[0-9]+*' | |
| jobs: | |
| publish: | |
| environment: 'pub.dev' | |
| permissions: | |
| id-token: write # Required for authentication using OIDC | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 📚 Git Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - name: 🐦 Setup Flutter | |
| uses: subosito/flutter-action@v2 | |
| - name: 📦 Install Melos | |
| run: dart pub global activate melos 7.5.1 | |
| - name: 📦 Bootstrap workspace | |
| run: melos bootstrap | |
| - name: 🔎 Verify version sync | |
| run: dart tools/sync_version.dart --check | |
| - name: 🔎 Verify symlinks | |
| run: melos run symlinks:check | |
| - name: 🚀 Publish fluwx | |
| uses: ./.github/actions/publish_flutter_package | |
| with: | |
| working-directory: packages/fluwx | |
| - name: 🚀 Publish fluwx_no_pay | |
| uses: ./.github/actions/publish_flutter_package | |
| with: | |
| working-directory: packages/fluwx_no_pay |