Created
April 22, 2020 07:49
-
-
Save Nesh108/b55fa8e890e0fae0dba33a5efb078871 to your computer and use it in GitHub Desktop.
Setup GitLab Runner for Automated Builds
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo gitlab-runner register \ | |
--name BuildRunner \ | |
--executor shell \ | |
--non-interactive \ | |
--registration-token <TOKEN> \ | |
--url <REPO_URL> \ | |
--tls-ca-file <PATH_TO_LETSENCRYPT_FULLCHAIN_PEM> \ | |
--run-untagged true | |
# Activate it | |
sudo gitlab-runner verify |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment