Skip to content

Commit

Permalink
ci: Use Flutter tools instead of Dart tools
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Pepe committed May 23, 2023
1 parent d3ceeac commit dae5d57
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: dart-lang/setup-dart@v1
- uses: subosito/flutter-action@v2
with:
channel: 'stable'

- name: Install dependencies
run: dart pub get
run: flutter pub get

- name: Bump version
run: |
flutter pub global activate cider
flutter pub global run cider version ${{ github.ref_name }}
- name: Publish
run: dart pub publish --force
run: flutter pub publish --force

0 comments on commit dae5d57

Please sign in to comment.