Skip to content

Commit a00d42c

Browse files
committed
Remove --force flag from Dart publish step
The --force flag was removed from the 'dart pub publish --dry-run' command in the CI workflow. This change ensures the publish step adheres to standard dry-run behavior without forcing publication.
1 parent 6292671 commit a00d42c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ jobs:
280280
run: |
281281
publish_pkg () {
282282
pushd "$1" >/dev/null
283-
dart pub publish --force --dry-run
283+
dart pub publish --dry-run
284284
popd >/dev/null
285285
}
286286

0 commit comments

Comments
 (0)