Switch tag script to lockstep versioning

This commit is contained in:
Jon Staab
2025-05-15 15:43:11 -07:00
parent 593a8c7401
commit 93f4663985
+1 -5
View File
@@ -7,11 +7,7 @@ if [[ -z "$status" ]]; then
exit 1
fi
for pkg in $(ls packages); do
version=$(sed -nr 's/ +"version": "(.+)",/\1/p' packages/$pkg/package.json)
git tag "$pkg/$version" >/dev/null 2>&1
done
git tag $(cat package.json|jq -r .version) >/dev/null 2>&1
git push
git push --tags