Bump json schema. #171
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
| # Copyright 2025 The Flutter Authors. | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| # A CI configuration to auto-publish pub packages. | |
| name: Publish | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| types: [opened, synchronize, reopened, labeled, unlabeled] | |
| push: | |
| # Match <package-name>-v<version> publish tags | |
| tags: [ '[A-z0-9]+-v[0-9]+.[0-9]+.[0-9]+' ] | |
| jobs: | |
| publish: | |
| if: ${{ github.repository_owner == 'flutter' }} | |
| uses: dart-lang/ecosystem/.github/workflows/publish.yaml@main | |
| with: | |
| # See https://github.com/dart-lang/ecosystem/tree/main/pkgs/firehose#options | |
| sdk: beta # version of dart sdk to use for publishing | |
| write-comments: false | |
| checkout_submodules: false | |
| # Temporary exclude flutter to test if | |
| # See https://github.com/dart-lang/ecosystem/issues/418 | |
| # use-flutter: true | |
| ignore-packages: "packages/genui" | |
| permissions: | |
| id-token: write | |
| pull-requests: write |