Skip to content

Commit 6e3eabe

Browse files
fix publish workflow
1 parent cd870a7 commit 6e3eabe

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/publish.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ jobs:
99
publish:
1010
permissions:
1111
id-token: write
12-
uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1
13-
with:
14-
environment: pub.dev
12+
runs-on: ubuntu-latest
13+
steps:
14+
- 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+
- name: Publish
22+
run: dart pub publish --force

0 commit comments

Comments
 (0)