Artifacts, derleme sürecinin çıktılarıdır (derlenmiş binary dosyaları, paketler, Docker imajları) ve bu çıktılar dağıtılır. Artifact yönetimi — bu artifact'ları bir kayıt defteri/depo içinde depolama, sürümlendirme ve ortamlar arasında ilerleme — güvenilir, izlenebilir dağıtımlar için önemlidir.
Artifact'lar nedir
The BUILD produces ARTIFACTS — the deployable outputs:
→ Docker IMAGES, compiled binaries, JARs/WARs, npm packages, zip bundles, etc.
→ These are what actually get DEPLOYED (not the source code directly).
Artifact depoları/kayıt defterleri
Artifacts are stored in REPOSITORIES/REGISTRIES (versioned, central storage):
→ Container registries: Docker Hub, AWS ECR, GitHub/GitLab Container Registry
→ Package repositories: npm registry, Maven, PyPI, Artifactory, Nexus
→ The pipeline BUILDS an artifact, PUSHES it to the registry, and DEPLOYS from there.
