Skip to content

Commit 6f7f634

Browse files
authored
Update publish.yml
1 parent a61128e commit 6f7f634

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

.github/workflows/publish.yml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,21 @@ jobs:
1111
publish:
1212
permissions:
1313
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'
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v3
17+
- 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+
1830

1931

0 commit comments

Comments
 (0)