ci(linux): skip checking assets [skip ci]

This commit is contained in:
Baptiste Augrain 2024-02-22 13:40:29 +01:00
parent 3b86373e7c
commit ab1a6fa244

View File

@ -47,7 +47,9 @@ contains() {
echo "${ASSETS}" | grep "${1}\""
}
if [[ "${ASSETS}" != "null" && "${CHECK_ASSETS}" != "no" ]]; then
if [[ "${CHECK_ASSETS}" == "no" ]]; then
echo "Don't check assets, yet"
elif [[ "${ASSETS}" != "null" ]]; then
if [[ "${IS_SPEARHEAD}" == "yes" ]]; then
if [[ -z $( contains "${APP_NAME}-${RELEASE_VERSION}-src.tar.gz" ) || -z $( contains "${APP_NAME}-${RELEASE_VERSION}-src.zip" ) ]]; then
echo "Building because we have no SRC"