🐛 Fixed version generation issues

This commit is contained in:
2025-09-05 22:40:09 +08:00
parent a257d30dba
commit 1f8e8981ce
4 changed files with 34 additions and 1 deletions

View File

@@ -31,6 +31,19 @@ if errorlevel 1 (
exit /b 1
)
REM Sync remote tags
echo [INFO] Syncing remote tags...
echo [INFO] Deleting local tags...
for /f "delims=" %%i in ('git tag -l') do git tag -d %%i >nul 2>&1
echo [INFO] Fetching remote tags...
git fetch origin --prune >nul 2>&1
if errorlevel 1 (
echo [WARNING] Failed to fetch from remote, using local tags
) else (
echo [INFO] Remote tags synced successfully
)
REM Get latest git tag
git describe --abbrev=0 --tags > temp_tag.txt 2>nul
if errorlevel 1 (