Skip to content

Commit 680bf88

Browse files
authored
Add auto-publish action (#437)
1 parent 798b65d commit 680bf88

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/publish.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# A CI configuration to auto-publish pub packages.
2+
3+
name: Publish
4+
5+
on:
6+
pull_request:
7+
branches: [ master ]
8+
push:
9+
tags: [ '[A-z]+-v[0-9]+.[0-9]+.[0-9]+' ]
10+
11+
jobs:
12+
publish:
13+
if: ${{ github.repository_owner == 'google' }}
14+
uses: dart-lang/ecosystem/.github/workflows/publish.yaml@main

0 commit comments

Comments
 (0)