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 a61128e commit 6f7f634Copy full SHA for 6f7f634
.github/workflows/publish.yml
@@ -11,9 +11,21 @@ jobs:
11
publish:
12
permissions:
13
id-token: write # Required for authentication using OIDC
14
- uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_pub_publish.yml@v1
15
- with:
16
- flutter_channel: 'stable'
17
- flutter_version: '3.3.0'
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - uses: dart-lang/setup-dart@v1
18
+ - name: Set up Flutter
19
+ uses: subosito/flutter-action@v2
20
+ with:
21
+ flutter_channel: 'stable'
22
+ flutter_version: '3.3.0'
23
+ - name: Install dependencies
24
+ run: flutter pub get
25
+ # Here you can insert custom steps you need
26
+ # - run: dart tool/generate-code.dart
27
+ - name: Publish
28
+ run: flutter pub publish --force
29
+
30
31
0 commit comments