Skip to content

Commit

Permalink
ci: fixes packages publishing working directory
Browse files Browse the repository at this point in the history
ci: fixes inexistant dependency

Signed-off-by: Vincent Biret <vibiret@microsoft.com>
  • Loading branch information
baywet committed Jan 6, 2025
1 parent 53dbdc8 commit 3abc370
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ jobs:
id-token: write # Required for authentication using OIDC

needs:
- publish-gh-releases
- define-matrix

runs-on: ubuntu-latest
Expand Down Expand Up @@ -76,9 +75,9 @@ jobs:
sed -i 's/^version:.*$/version: ${GITHUB_REF_NAME}/' pubspec.yaml
- name: Release dry run
working-directory: dart
working-directory: packages/${{ matrix.package }}
run: dart pub publish --dry-run

- name: Release to pub.dev
working-directory: dart
working-directory: packages/${{ matrix.package }}
run: dart pub publish --force

0 comments on commit 3abc370

Please sign in to comment.