Skip to content

Commit

Permalink
fix publish
Browse files Browse the repository at this point in the history
  • Loading branch information
rainyl committed Nov 6, 2024
1 parent 9cd466d commit be01827
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,13 @@ jobs:
environment: pub.dev
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: "stable"
- uses: dart-lang/setup-dart@v1
- name: Install dependencies
working-directory: packages/dartcv
run: flutter pub get
run: dart pub get
- name: Publish
working-directory: packages/dartcv
run: flutter pub publish --force
run: dart pub publish --force
publish-opencv-core:
if: startsWith(github.ref, 'refs/tags/v')
name: Publish opencv_core
Expand All @@ -64,6 +62,7 @@ jobs:
environment: pub.dev
steps:
- uses: actions/checkout@v4
- uses: dart-lang/setup-dart@v1
- uses: subosito/flutter-action@v2
with:
channel: "stable"
Expand All @@ -83,6 +82,7 @@ jobs:
environment: pub.dev
steps:
- uses: actions/checkout@v4
- uses: dart-lang/setup-dart@v1
- uses: subosito/flutter-action@v2
with:
channel: "stable"
Expand Down

0 comments on commit be01827

Please sign in to comment.