Now in case when subfolder to upload is defined explicitly, it has the highest priority. Otherwise script deduces a default subfolder to upload bandle from a branch name.

This commit is contained in:
kifir23917 2024-07-18 17:28:39 +03:00 committed by rusefillc
parent 8c202c95fd
commit d528e39e71
1 changed files with 3 additions and 3 deletions

View File

@ -37,10 +37,10 @@ if [ -n "${USER}" -a -n "$PASS" -a -n "${HOST}" ]; then
UPDATE_BUNDLE_FILE="${WHITE_LABEL}_bundle_${BUNDLE_NAME}_autoupdate.zip"
RET=0
if [ "$AUTOMATION_LTS" == "true" -a -n "$AUTOMATION_REF" ]; then # lts build
if [ -n "${SUBFOLDER_TO_UPLOAD}" ]; then # subfolder to upload bundle is specified explicitly
DESTINATION_SUBFOLDER="${SHORT_BOARD_NAME}/${SUBFOLDER_TO_UPLOAD}"
elif [ "$AUTOMATION_LTS" == "true" -a -n "$AUTOMATION_REF" ]; then # lts build
DESTINATION_SUBFOLDER="lts/${AUTOMATION_REF}"
elif [ -n "${SUBFOLDER_TO_UPLOAD}" ]; then # daily release with tag
DESTINATION_SUBFOLDER="${SHORT_BOARD_NAME}/${SUBFOLDER_TO_UPLOAD}"
else
DESTINATION_SUBFOLDER=""
fi