gitlab-ci 中的 token 发表于 2021-01-21 更新于 2021-05-11 分类于 技术文章 阅读次数: Disqus: 记录一下 gitlab-ci 中的 token 如何创建及使用 创建在 个人 -> 设置 -> access token 中创建 CI_TAG_UPLOAD_TOKEN。 使用创建后,再到项目中的 设置 -> CI/CD -> secret values 中创建 CI_TAG_UPLOAD_TOKEN,并把值设置为前面生成的值。 在 gitlab-ci.yml 文件的脚本中设置 123script: - url_host=`git remote get-url origin | sed -e "s/https:\/\/gitlab-ci-token:.*@//g"` - git remote set-url origin "https://gitlab-ci-token:${CI_TAG_UPLOAD_TOKEN}@${url_host}"