chore: update&fix workflow dev version

This commit is contained in:
ezequielnick 2025-08-31 17:19:30 +08:00
parent 195306f251
commit 489dc8ac67
2 changed files with 8 additions and 10 deletions

View File

@ -27,8 +27,6 @@ function updatePackageVersion() {
}
}
if (import.meta.url === `file://${process.argv[1]}`) {
updatePackageVersion()
}
export { updatePackageVersion }

View File

@ -26,7 +26,7 @@ export function getBaseVersion() {
const pkg = readFileSync('package.json', 'utf-8')
const { version } = JSON.parse(pkg)
// 移除dev版本格式后缀
return version.replace('-dev', '').replace(/-\d{4}-[a-f0-9]{7}$/, '')
return version.replace(/-d\d{2,4}\.[a-f0-9]{7}$/, '')
} catch (error) {
console.error('Failed to read package.json:', error.message)
return '1.0.0'
@ -39,7 +39,7 @@ export function getDevVersion() {
const monthDate = getCurrentMonthDate()
const commitHash = getGitCommitHash(true)
return `${baseVersion}-${monthDate}-${commitHash}`
return `${baseVersion}-d${monthDate}.${commitHash}`
}
// 检查当前环境是否为dev构建