Skip to content

Commit b0da0e7

Browse files
committed
Fail the build if publishing fails. Update changelog.
1 parent 5b79075 commit b0da0e7

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,15 +119,15 @@ for:
119119
cd packages/flet
120120
echo "Running flet tests"
121121
flutter test || exit 1
122-
dart pub publish --force
122+
dart pub publish --force || exit 1
123123
cd $APPVEYOR_BUILD_FOLDER
124124
125-
sleep 10
125+
sleep 120
126126
127127
for dir in packages/flet_*; do
128128
cd "$dir"
129129
echo "Publishing $dir package"
130-
dart pub publish --force
130+
dart pub publish --force || exit 1
131131
cd "$APPVEYOR_BUILD_FOLDER"
132132
done
133133

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
# 0.23.1
44

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

packages/flet/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# 0.23.1
22

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

0 commit comments

Comments
 (0)