packaging: Also update uv lock files when pushing a new version.

This commit is contained in:
Andrew Hamilton 2024-12-10 23:09:50 +10:00
parent e164f4e7d1
commit 2f0136c5ad

View file

@ -20,6 +20,9 @@ else
git grep --no-color -l $CURRENT_VERSION | xargs sed -i "s/$CURRENT_VERSION/$NEW_VERSION/g" git grep --no-color -l $CURRENT_VERSION | xargs sed -i "s/$CURRENT_VERSION/$NEW_VERSION/g"
git commit --all --message="Update version to $NEW_VERSION" git commit --all --message="Update version to $NEW_VERSION"
fi fi
for DIR in eris fill3 lscolors termstr ; do
cd $DIR; uv sync; cd ..
done
git tag $NEW_VERSION git tag $NEW_VERSION
git push git push
git push --tags git push --tags