Bump nanasess/setup-chromedriver from 5418e3074d44d074af079511f7840e45da3c2454 to 46174af8ff4d958c291f6830dacee57ba8c7b97a #53
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
# A CI configuration to auto-publish pub packages. | |
name: Publish | |
on: | |
# Trigger on pull requests that target the default branch. | |
pull_request: | |
branches: [ master ] | |
# Also, trigger when tags are pushed to the repo. | |
push: | |
tags: [ 'v[0-9]+.[0-9]+.[0-9]+*' ] | |
# The script below will perform publishing checks (version checks, publishing | |
# dry run, ...) when run on a PR, and perform an actual pub publish when run as | |
# a result of a git tag event. | |
jobs: | |
publish: | |
if: ${{ github.repository_owner == 'google' }} | |
uses: dart-lang/ecosystem/.github/workflows/publish.yaml@main | |
with: | |
write-comments: false |