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.
2 parents 695640d + 1690e3d commit 19ae72cCopy full SHA for 19ae72c
.github/workflows/publish.yml
@@ -3,12 +3,21 @@ name: Publish to pub.dev
3
on:
4
push:
5
tags:
6
- - '[0-9]+\.[0-9]+\.[0-9]+.*'
+ - '[0-9]+\.[0-9]+\.[0-9]+*'
7
8
jobs:
9
publish:
10
permissions:
11
id-token: write
12
- uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1
13
- with:
14
- environment: pub.dev
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
15
+ - name: Install Flutter
16
+ uses: subosito/flutter-action@v2
17
+ with:
18
+ channel: stable
19
+ - name: Install dependencies
20
+ run: flutter pub get
21
+ - uses: dart-lang/setup-dart@v1
22
+ - name: Publish
23
+ run: dart pub publish --force
0 commit comments