From 03a1d2a5f2795fd049ca4abc5ccc0945ffe3ad56 Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Thu, 16 Feb 2023 15:48:52 -0800 Subject: [PATCH] blast_repo fixes (#3459) --- .github/workflows/publish.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/publish.yaml diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml new file mode 100644 index 000000000..91f6a69c4 --- /dev/null +++ b/.github/workflows/publish.yaml @@ -0,0 +1,14 @@ +# A CI configuration to auto-publish pub packages. + +name: Publish + +on: + pull_request: + branches: [ master ] + push: + tags: [ '[A-z]+-v[0-9]+.[0-9]+.[0-9]+*' ] + +jobs: + publish: + if: ${{ github.repository_owner == 'dart-lang' }} + uses: dart-lang/ecosystem/.github/workflows/publish.yaml@main