What Is CI_PROJECT_PATH?
CI_PROJECT_PATH is the full namespace/project path of the repository.
CI_PROJECT_PATH is what you use to build registry image names and clone URLs that include the group.
Example
Reference the registry image path.
shell
echo "${CI_REGISTRY}/${CI_PROJECT_PATH}"Key takeaways
- CI_PROJECT_PATH is
namespace/project. - Used for registry and clone paths.
- CI_PROJECT_PATH_SLUG is URL-safe.
Related guides
What Is CI_PROJECT_NAME?CI_PROJECT_NAME is the name of the GitLab project running a pipeline. Learn how it differs from the path.
What Is CI_REGISTRY_IMAGE?CI_REGISTRY_IMAGE is the base image path for a project in the GitLab Container Registry. Learn how to tag ima…
What Is CI_PROJECT_ID?CI_PROJECT_ID is the unique numeric ID of a GitLab project in CI. Learn how to use it in API calls.