Skip to content

Commit

Permalink
Fail the build if publishing fails. Update changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
FeodorFitsner authored and zrr1999 committed Jul 17, 2024
1 parent 4ca7c42 commit b653fd2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,15 +119,15 @@ for:
cd packages/flet
echo "Running flet tests"
flutter test || exit 1
dart pub publish --force
dart pub publish --force || exit 1
cd $APPVEYOR_BUILD_FOLDER
sleep 10
sleep 120
for dir in packages/flet_*; do
cd "$dir"
echo "Publishing $dir package"
dart pub publish --force
dart pub publish --force || exit 1
cd "$APPVEYOR_BUILD_FOLDER"
done
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# 0.23.1

* FIX: Flet 0.23 crashes on Ubuntu 22.04 ([#3495](https://github.com/flet-dev/flet/issues/3495))
* FIX: View.floating_action_button_location: conditionally use _set_attr.
* FIX: Import `ParamSpec` from `typing` for Python >3.10.
* FIX: replace `len(list(filter(...)))` by `any(...)`.
Expand Down
1 change: 1 addition & 0 deletions packages/flet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# 0.23.1

* FIX: Flet 0.23 crashes on Ubuntu 22.04 ([#3495](https://github.com/flet-dev/flet/issues/3495))
* FIX: View.floating_action_button_location: conditionally use _set_attr.
* FIX: Import `ParamSpec` from `typing` for Python >3.10.
* FIX: replace `len(list(filter(...)))` by `any(...)`.
Expand Down

0 comments on commit b653fd2

Please sign in to comment.