Skip to content

Commit b95fa32

Browse files
authored
ci: remove dry run from pub_publish (#1096)
1 parent 6f9381b commit b95fa32

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/pub_publish.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name: pub_publish
33
on:
44
push:
55
tags:
6-
- 'v[0-9]+.[0-9]+.[0-9]+*' # tag pattern on pub.dev: 'v{{version}'
6+
- "v[0-9]+.[0-9]+.[0-9]+*" # tag pattern on pub.dev: 'v{{version}'
7+
workflow_dispatch:
78

89
jobs:
910
publish:
@@ -17,7 +18,5 @@ jobs:
1718
uses: dart-lang/setup-dart@v1
1819
- name: 📦 Install Dependencies
1920
run: dart pub get
20-
- name: 🌵 Dry Run
21-
run: dart pub publish --dry-run
2221
- name: 📢 Publish
23-
run: dart pub publish --force
22+
run: dart pub publish --force

0 commit comments

Comments
 (0)