From f55a60f596a76a9ea5496b3201e7560fbe8243e7 Mon Sep 17 00:00:00 2001 From: Benjamin Sherman Date: Sat, 13 Jan 2024 17:05:41 -0600 Subject: [PATCH] chore(ci): bash variables only work when using proper braces --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4b4b8f6..300deb8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -282,7 +282,7 @@ jobs: alias_tags=("${COMMIT_TAGS[@]}") else - if [[ "$[COREOS_VERSION]" == "stable" ]]; then + if [[ "${COREOS_VERSION}" == "stable" ]]; then BUILD_TAGS+=("latest") fi