Artifacts भनेको build process को output (compiled binaries, packages, Docker images) हो जसलाई deploy गरिन्छ। Artifact management — यी artifacts लाई store, version, र registry/repository मार्फत promote गरिने — विश्वसनीय र traceable deployments को लागि महत्त्वपूर्ण छ।
Artifacts के हुन्
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 repositories/registries
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.
