mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-07-31 15:25:26 +00:00
Merge pull request #9647 from stevenhorsman/fix-artefact-tags-unbound-variable
ci: cache: Fix unbound variable
This commit is contained in:
commit
33e6b241ba
@ -1177,7 +1177,7 @@ handle_build() {
|
|||||||
esac
|
esac
|
||||||
|
|
||||||
tags=(latest-${TARGET_BRANCH}-$(uname -m))
|
tags=(latest-${TARGET_BRANCH}-$(uname -m))
|
||||||
if [ -n "${artefact_tag}" ]; then
|
if [ -n "${artefact_tag:-}" ]; then
|
||||||
tags+=("${artefact_tag}")
|
tags+=("${artefact_tag}")
|
||||||
fi
|
fi
|
||||||
if [ "${RELEASE}" == "yes" ]; then
|
if [ "${RELEASE}" == "yes" ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user