Skip to content

Commit 4de8c86

Browse files
committed
👷 Add publish workflow
1 parent 62e360f commit 4de8c86

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/publish.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Publish
2+
3+
on:
4+
release:
5+
types: [published]
6+
workflow_dispatch:
7+
8+
jobs:
9+
publish:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v3
14+
- name: Dart and Flutter Package Publisher
15+
uses: k-paxian/dart-package-publisher@master
16+
with:
17+
credentialJson: ${{ secrets.CREDENTIAL_JSON }}
18+
force: true
19+
skipTests: true
20+
suppressBuildRunner: true

0 commit comments

Comments
 (0)