wasm-rebuild: Print tags that will be processed

This commit is contained in:
Kamil Śliwak 2022-02-18 14:45:38 +01:00
parent 42ac3b29b4
commit 1f5407521a

View File

@ -240,6 +240,7 @@ wget -q "${RELEASE_COMMIT_LIST_URL}" -O /tmp/release_commit_list.txt
cd /src
TAGS=$(git tag --list "${TAG_FILTER}" | tac)
echo "Matching tags: ${TAGS}"
for TAG in ${TAGS}; do
process_tag "${TAG}"
done