We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6920989 commit 67532c9Copy full SHA for 67532c9
.github/workflows/main.yml
@@ -4,7 +4,9 @@ on:
4
push:
5
tags:
6
# must align with the tag-pattern configured on pub.dev
7
- - '[0-9]+.[0-9]+.[0-9]+' # tag-pattern on pub.dev: '{{version}}'
+ # tag-pattern on pub.dev: 'v{{version}}'
8
+ # where {{version}} is identical to what we have in pubspec.yaml
9
+ - "[0-9]+.[0-9]+.[0-9]+"
10
11
jobs:
12
publishing:
@@ -36,4 +38,3 @@ jobs:
36
38
# If the package has errors, it won't upload.
37
39
- name: Publish
40
run: dart pub publish --force
-
0 commit comments