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 ad8ecc3 commit dbe90d5Copy full SHA for dbe90d5
1 file changed
.github/workflows/dart_build.yml .github/workflows/flutter_build.yml.github/workflows/dart_build.yml renamed to .github/workflows/flutter_build.yml
@@ -14,17 +14,23 @@ jobs:
14
runs-on: ubuntu-latest
15
16
steps:
17
- - name: 'Checkout'
+ - name: Checkout
18
uses: actions/checkout@v4
19
20
- name: 'Setup Dart'
21
uses: dart-lang/setup-dart@v1.6.0
22
23
+ - name: 'Setup Flutter'
24
+ uses: subosito/flutter-action@v2
25
+ with:
26
+ flutter-version: '3.29.3'
27
+ channel: 'stable'
28
+
29
- name: 'Get Packages'
- run: dart pub get
30
+ run: flutter pub get
31
32
- name: 'Dry Run Publishing'
- run: dart pub publish --dry-run
33
+ run: flutter packages pub publish --dry-run
34
35
- name: 'Publish Artifact'
- run: dart pub publish --force
36
+ run: flutter packages pub publish --force
0 commit comments