Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.

Commit 6980f2c

Browse files
authored
Add auto publish workflow (#138)
* Add auto publish workflow * Use SHA * Trigger on branches * Fix * Use main branch * Fix typo
1 parent e7531ef commit 6980f2c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/publish.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Publish
2+
on:
3+
pull_request:
4+
branches: [ master ]
5+
types: [opened, synchronize, reopened, labeled, unlabeled]
6+
push:
7+
tags: [ 'v[0-9]+.[0-9]+.[0-9]+*' ]
8+
jobs:
9+
publish:
10+
uses: dart-lang/ecosystem/.github/workflows/publish.yaml@main

0 commit comments

Comments
 (0)