We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bf4c41 commit eb0e164Copy full SHA for eb0e164
.github/workflows/publish.yaml
@@ -0,0 +1,23 @@
1
+name: Release to Pub.dev
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - 'v[0-9]+.[0-9]+.[0-9]+*'
7
8
+jobs:
9
+ publish:
10
+ permissions:
11
+ id-token: write
12
+ contents: read
13
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
18
+ - uses: subosito/flutter-action@v2
19
+ with:
20
+ channel: 'stable'
21
22
+ - run: flutter pub get
23
+ - run: flutter pub publish --force
.github/workflows/release.yaml
@@ -1,4 +1,4 @@
-name: Release & Publish
+name: Create Release
on:
push:
0 commit comments