Skip to content

Commit c2d673b

Browse files
author
LaksCastro
committed
(#7) Add action to publish the plugin when a new commit is pushed to the release branch
1 parent b3c1de3 commit c2d673b

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/publish.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
on:
2+
push:
3+
branches:
4+
- release
5+
6+
jobs:
7+
publish:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: dart-lang/setup-dart@v1
13+
14+
- name: Run Pub Publish
15+
run: dart pub publish --dry-run

0 commit comments

Comments
 (0)