#!/usr/bin/env bash if [ -z "$GIT_TAG" ]; then echo "GIT_TAG is not set" exit 1 fi OLD_TAG=$(jq -r '.version' package.json) rg "$OLD_TAG" --files-with-matches --iglob \!\*lock\* --iglob \!go.mod --iglob \!deno.json --iglob \!package.json --iglob \!\*.md | xargs sed -i "s/$OLD_TAG/$GIT_TAG/g" # fiddle with autotools AUTOTOOLS_TAG=${GIT_TAG//\./:} OLD_TAG=${OLD_TAG//\./:} sed -i "s/$GIT_TAG/$AUTOTOOLS_TAG/g" GNUmakefile.am