Git 发布后 Jenkins 的标签
Git Tag for Jenkins after Releasing
我正在为一个项目使用 Jenkins、GitLab、Maven 和 Nexus。以前我使用 Jenkins shell 命令进行 mvn build 和 nexus release 工件上传。现在我必须为它创建 Git 标签。有人可以指导这样做吗?我正在使用的所有东西 shell commands.Can 我使用这些命令吗?
git tag -a v0.0.1 -m "0.0.1 tag"
git push origin v0.0.1
这些命令对我有用。
#!/bin/bash
echo tagging with build-$BUILD_NUMBER
git tag -f build-$BUILD_NUMBER
git tag -l
git remote -v
git remote set-url origin https://$USERNAME:$PASSWORD@hub.jazz.net/git/user/project
git push --tags origin
我正在为一个项目使用 Jenkins、GitLab、Maven 和 Nexus。以前我使用 Jenkins shell 命令进行 mvn build 和 nexus release 工件上传。现在我必须为它创建 Git 标签。有人可以指导这样做吗?我正在使用的所有东西 shell commands.Can 我使用这些命令吗?
git tag -a v0.0.1 -m "0.0.1 tag"
git push origin v0.0.1
这些命令对我有用。
#!/bin/bash
echo tagging with build-$BUILD_NUMBER
git tag -f build-$BUILD_NUMBER
git tag -l
git remote -v
git remote set-url origin https://$USERNAME:$PASSWORD@hub.jazz.net/git/user/project
git push --tags origin