diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index 764fe709b..1a229044e 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -86,7 +86,9 @@ runs: generate_exports() { for x in $(grep "^[A-Z]" "${TMP_CONFIG}" | cut -d'=' -f1 | sort); do - echo "export ${x}" >> "${TMP_CONFIG}" + if [[ ${x} != "BASE_ZIP_IMG" ]]; then + echo "export ${x}" >> "${TMP_CONFIG}" + fi done }