gitlab-ci-artifacts-caching

Installation
SKILL.md

GitLab CI - Artifacts & Caching

Configure artifacts and caching for efficient pipeline execution.

Artifacts

Basic Artifact Configuration

build:
  script:
    - npm run build
  artifacts:
    paths:
      - dist/
    expire_in: 1 week

Artifact Reports

Installs
24
GitHub Stars
174
First Seen
Jan 22, 2026
gitlab-ci-artifacts-caching — thebushidocollective/han