fix tag short-circuit
Build act images / Build act 24.04 (push) Successful in 3m14s
Build act images / Build act 22.04 (push) Successful in 3m24s

This commit is contained in:
Madison Grubb
2026-03-13 11:28:21 -04:00
parent 7390baa6af
commit 0c5a3caeab
+6 -2
View File
@@ -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