CI_PROJECT_PATH とは?
CI_PROJECT_PATH は、リポジトリの完全な namespace/project の path です。
CI_PROJECT_PATH は、グループを含む registry のイメージ名や clone URL を組み立てる際に使用します。
例
registry のイメージ path を参照します。
shell
echo "${CI_REGISTRY}/${CI_PROJECT_PATH}"重要なポイント
- CI_PROJECT_PATH は
namespace/projectです。 - registry や clone の path に使用されます。
- CI_PROJECT_PATH_SLUG は URL セーフです。
関連ガイド
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.