Skip to content

Commit

Permalink
chore: migrate to using flutter cli to publish
Browse files Browse the repository at this point in the history
  • Loading branch information
kkostov committed Feb 12, 2024
1 parent 470abe5 commit 28a763c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,11 @@ jobs:
- uses: actions/checkout@v4
- uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d
- uses: subosito/flutter-action@2783a3f08e1baf891508463f8c6653c258246225
- name: Check flutter version
run: flutter --version
- name: Install dependencies
run: dart pub get
run: flutter pub get
- name: Publish - dry run
run: dart pub publish --dry-run
run: flutter pub publish --dry-run
- name: Publish to pub.dev
run: dart pub publish -f
run: flutter pub publish -f

0 comments on commit 28a763c

Please sign in to comment.