Merge pull request #551 from kiwix/fix_wrong_upload

This commit is contained in:
Matthieu Gautier 2022-11-24 17:29:41 +01:00 committed by GitHub
commit 23c9ecdbed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -47,5 +47,5 @@ for target in TARGETS:
if PLATFORM_TARGET == "native_mixed" and OS_NAME == "osx": if PLATFORM_TARGET == "native_mixed" and OS_NAME == "osx":
fix_macos_rpath(target) fix_macos_rpath(target)
archive = make_archive(target, make_release=False) archive = make_archive(target, make_release=False)
if archive: if archive and DEV_BRANCH:
upload_archive(archive, target, make_release=False, dev_branch=DEV_BRANCH) upload_archive(archive, target, make_release=False, dev_branch=DEV_BRANCH)