This commit is contained in:
2025-08-25 20:24:23 +08:00
parent 30106e0129
commit 0ae8d7a709
1044 changed files with 321581 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
publishCommit=$(git --no-pager log -1 --pretty=format:"%H" --grep="^chore(release): publish$")
ref=$(git tag -l --points-at $publishCommit)
echo "reverting publish commit $publishCommit"
echo "deleting tags $ref"
git push --delete origin $ref
echo "reverting commit $publishCommit"
git revert --no-edit $publishCommit
echo "pushing changes"
git push origin main
echo "done reverting publish"