Skip to content

Commit 9dbf82f

Browse files
committed
Fix Flet wheels publishing on tag builds
1 parent dbae10b commit 9dbf82f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ for:
431431

432432
# publish package
433433
- sh: |
434-
if [[ "$APPVEYOR_REPO_BRANCH" == "main" && "$APPVEYOR_PULL_REQUEST_NUMBER" == "" ]]; then
434+
if [[ ("$APPVEYOR_REPO_BRANCH" == "main" || "$APPVEYOR_REPO_TAG_NAME" != "") && "$APPVEYOR_PULL_REQUEST_NUMBER" == "" ]]; then
435435
twine upload dist/*
436436
fi
437437

0 commit comments

Comments
 (0)