Artefaktet janë rezultatet e procesit të ndërtimit (binaret e kompajluara, paketat, imazhet Docker) që vendosen në prodhim. Menaxhimi i artefakteve — ruajtja, versionimi dhe promovimi i këtyre artefakteve përmes një regjistri/depo — është i rëndësishëm për vendosje të besueshme, të gjurmueshme.
Çfarë janë artefaktet
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).
Depoja/regjistrat e artefakteve
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.
