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

@ -7,7 +7,7 @@ function updatePackageVersion() {
const packagePath = 'package.json'
const packageContent = readFileSync(packagePath, 'utf-8')
const packageData = JSON.parse(packageContent)
// 获取处理后的版本号
const newVersion = getProcessedVersion()
@ -15,20 +15,18 @@ function updatePackageVersion() {
console.log(`${isDevBuild() ? 'Dev构建' : '正式构建'} - 新版本: ${newVersion}`)
packageData.version = newVersion
// 写回package.json
writeFileSync(packagePath, JSON.stringify(packageData, null, 2) + '\n')
console.log(`✅ package.json版本号已更新为: ${newVersion}`)
} catch (error) {
console.error('❌ 更新package.json版本号失败:', error.message)
process.exit(1)
}
}
if (import.meta.url === `file://${process.argv[1]}`) {
updatePackageVersion()
}
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'
@ -38,8 +38,8 @@ export function getDevVersion() {
const baseVersion = getBaseVersion()
const monthDate = getCurrentMonthDate()
const commitHash = getGitCommitHash(true)
return `${baseVersion}-${monthDate}-${commitHash}`
return `${baseVersion}-d${monthDate}.${commitHash}`
}
// 检查当前环境是否为dev构建