File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4444 printf '%s' "$PUB_CREDENTIALS" > "$HOME/.config/dart/pub-credentials.json"
4545
4646 - name : Publish packages
47- run : melos publish --no-dry-run --yes
47+ run : |
48+ # Publish in workspace dependency order (dependencies first) and
49+ # serially to avoid pub.dev validation failing when multiple packages
50+ # are released together.
51+ melos exec \
52+ --no-private \
53+ --no-published \
54+ --order-dependents \
55+ --concurrency=1 \
56+ -- dart pub publish --force
Original file line number Diff line number Diff line change @@ -112,4 +112,7 @@ lib/generated_plugin_registrant.dart
112112.history
113113.ionide
114114
115- # End of https://www.toptal.com/developers/gitignore/api/dart,flutter,visualstudiocode
115+ # End of https://www.toptal.com/developers/gitignore/api/dart,flutter,visualstudiocode
116+
117+ ** /.idea /
118+ ** /* .iml
You can’t perform that action at this time.
0 commit comments