Fix a crash during the first build of NavigationSheet with a path tha… #12
Workflow file for this run
This file contains 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 | |
on: | |
push: | |
tags: ["v[0-9]+.[0-9]+.[0-9]+*"] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Flutter | |
uses: ./.github/actions/setup_flutter | |
with: | |
target: package | |
- name: Setup OIDC token | |
uses: dart-lang/setup-dart@v1 | |
- name: Publish to pub.dev | |
run: flutter pub publish --force | |
working-directory: package |