Artifacts and Cache
This document introduces the Artifacts and Cache mechanisms of AtomGit Action, used to pass build outputs across Jobs and accelerate dependency installation.
Artifacts
Artifacts are files generated during a Workflow run, which can be passed across Jobs:
steps:
- name: Upload artifact
uses: upload-artifact
with:
name: build-output
path: dist/
- name: Download artifact
uses: download-artifact
with:
name: build-output
path: ./app