Skip to content

Commit 51b1cea

Browse files
authored
Create publish.yml
1 parent b7cac46 commit 51b1cea

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/publish.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Publish to pub
2+
3+
on:
4+
release:
5+
types:
6+
- created
7+
8+
jobs:
9+
publish:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v1
16+
- name: Publish
17+
uses: sakebook/actions-flutter-pub-publisher@v1.3.1
18+
with:
19+
credential: ${{ secrets.CREDENTIAL_JSON }}
20+
flutter_package: false
21+
skip_test: true
22+
dry_run: false

0 commit comments

Comments
 (0)