v1.8.0 #429

Merged
LukeGus merged 198 commits from dev-1.8.0 into main 2025-11-05 16:36:16 +00:00
Showing only changes of commit 4f91984032 - Show all commits

View File

@@ -81,6 +81,7 @@ jobs:
else
TAGS=("${{ github.ref_name }}")
fi
TAG_ARRAY=()
for tag in "${TAGS[@]}"; do
if [ "${{ github.event.inputs.registry }}" = "ghcr" ]; then
@@ -92,7 +93,9 @@ jobs:
TAG_ARRAY+=("docker.io/bugattiguy527/termix:${tag}")
fi
done
echo "tags=$(printf '%s\n' "${TAG_ARRAY[@]}" | jq -R -s -c 'split("\n")[:-1]')" >> $GITHUB_OUTPUT
JSON_TAGS=$(printf '%s\n' "${TAG_ARRAY[@]}" | jq -R -s -c 'split("\n")[:-1]')
echo "tags=$JSON_TAGS" >> $GITHUB_OUTPUT
- uses: useblacksmith/build-push-action@v2
with: