mirror of
https://github.com/kiwix/kiwix-build.git
synced 2025-06-26 10:11:27 +00:00
Publish the CI only if we are on a dev branch.
If we try to publish all the time, we will conflict with `Release&Nigthly` workflow as we would pulbish in nigthly directory. Fix #550
This commit is contained in:
2
.github/scripts/build_projects.py
vendored
2
.github/scripts/build_projects.py
vendored
@ -47,5 +47,5 @@ for target in TARGETS:
|
||||
if PLATFORM_TARGET == "native_mixed" and OS_NAME == "osx":
|
||||
fix_macos_rpath(target)
|
||||
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)
|
||||
|
Reference in New Issue
Block a user