1
0
mirror of https://github.com/142vip/408CSFamily.git synced 2026-04-05 03:27:57 +08:00

fix(镜像): 修复标签信息异常

This commit is contained in:
142vip.cn
2023-11-21 08:44:32 +08:00
parent 82792d16dd
commit 4f2e254cf1
2 changed files with 2 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ ARG GIT_MESSAGE
ARG HOME_PAGE
# 作者信息
LABEL "author.name"="$AUTHOR" "author.email"="$EMAIL"
LABEL "maintainer"="$AUTHOR <$EMAIL>"
# 项目信息
LABEL "repo.name"=$APP_NAME "repo.version"=$APP_VERSION \

View File

@@ -40,7 +40,7 @@ async function getGitInfo() {
// 输出最近一次提交的信息
return {
gitHash: commitHash,
gitMessage: commitMessage.join('')
gitMessage: commitMessage.join(' ')
}
}