From c27348bde3e3c38af41f5ce816cc9c12404e02bf Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 23 Nov 2022 16:06:35 +0100 Subject: [PATCH] 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 --- .github/scripts/build_projects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/build_projects.py b/.github/scripts/build_projects.py index d30723c..ea4fdff 100755 --- a/.github/scripts/build_projects.py +++ b/.github/scripts/build_projects.py @@ -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)