From 0c5a3caeab05f397e20f0de09eefacadaba373ea Mon Sep 17 00:00:00 2001 From: Madison Grubb Date: Fri, 13 Mar 2026 11:28:21 -0400 Subject: [PATCH] fix tag short-circuit --- .gitea/workflows/build.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index de673ca..d501a01 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -64,9 +64,13 @@ jobs: { echo "${TAG_NAME}-${PART_TAG}" - [ "${LATEST_TAG}" = "${{ matrix.TAG }}" ] && echo "act-latest-${PART_TAG}" + if [ "${LATEST_TAG}" = "${{ matrix.TAG }}" ]; then + echo "act-latest-${PART_TAG}" + fi echo "${TAG_NAME}" - [ "${LATEST_TAG}" = "${{ matrix.TAG }}" ] && echo "act-latest" + if [ "${LATEST_TAG}" = "${{ matrix.TAG }}" ]; then + echo "act-latest" + fi } > .tags - name: Build Docker image