fix(tui): wire ProgramOptions output #49
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 | |
| # When a pull request is opened or updated the job will run the validation | |
| # steps (using firehose, this checks for correct pubspec versioning, changelog entries, etc.). | |
| # When you push a tag (for a package), firehose will attempt to publish that package. | |
| on: | |
| pull_request: | |
| branches: [ artisanal, main, master ] | |
| types: [ opened, synchronize, reopened, labeled, unlabeled ] | |
| push: | |
| # For mono repos the tag must be prefixed with the package name, | |
| # e.g. "routed-v1.0.0". Adjust the regular expression as needed. | |
| tags: | |
| - 'v*.*.*' | |
| - '*-v*.*.*' | |
| workflow_dispatch: | |
| jobs: | |
| publish: | |
| # This job uses the common publish workflow provided by the ecosystem. | |
| # See https://github.com/dart-lang/ecosystem/wiki/Publishing-automation | |
| uses: dart-lang/ecosystem/.github/workflows/publish.yaml@main | |
| permissions: | |
| id-token: write | |
| pull-requests: write |