注册gitlab-runner

发布日期:2022-03-02 阅读量:1318
    gitlab-runner register \
    --non-interactive \
    --executor 'shell' \
    --url "https://your.gitlab.com/" \
    --registration-token "your token" \
    --description "devops-runner" \
    --tag-list "build-deploy" \
    --run-untagged="true" \
    --locked="false" \
    --access-level="not_protected"