Skip to content

Commit 20d026c

Browse files
author
LaksCastro
committed
(#7) Add missing args to the publish command on Github action
1 parent cc866cc commit 20d026c

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.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 --force

0 commit comments

Comments
 (0)