github · GitHub Actions Docs
Actions Store and share data with workflow artifacts - GitHub Docs
Teaches how to use GitHub Actions workflow artifacts to persist files generated during a job and retrieve them in subsequent jobs or workflow runs.
Derived skill
Files assembled from official documentation
Viewing SKILL.md
Actions Store and share data with workflow artifacts - GitHub Docs
Teaches how to use GitHub Actions workflow artifacts to persist files generated during a job and retrieve them in subsequent jobs or workflow runs.
When To Use
Use when you need to pass build outputs, test reports, or intermediate files between different jobs or workflows in a GitHub Actions pipeline.
Reference Files
| File | Contains | Use For |
|---|---|---|
SKILL.md | Entry point: scope, routing table, and workflow. | Start here. |
docs/actions-store-and-share-data-with-workflow-artifacts-github-docs-workflow-guide.md | A tutorial guide explaining how to use GitHub Actions to upload, store, and share data between jobs using workflow artifacts. | Questions about a tutorial guide explaining how to use GitHub Actions to upload, store, and share data between jobs using workflow ar... |
examples/actions-store-and-share-data-with-workflow-artifacts-github-docs-github-.text | A text representation of a repository directory structure used to demonstrate how workflow artifacts are organized and stored. | Exact payloads, commands, or snippets shown in A text representation of a repository directory structure used to demonstrate how workflow artifacts are organized an... |
examples/actions-store-and-share-data-with-workflow-artifacts-github-docs-github--2.text | A GitHub Actions workflow YAML configuration demonstrating how to use the upload-artifact action to archive build outputs. | Exact payloads, commands, or snippets shown in A GitHub Actions workflow YAML configuration demonstrating how to use the upload-artifact action to archive build out... |
examples/actions-store-and-share-data-with-workflow-artifacts-github-docs-github--3.text | A YAML workflow snippet demonstrating how to use the actions/upload-artifact action to store files as workflow artifacts. | Exact payloads, commands, or snippets shown in A YAML workflow snippet demonstrating how to use the actions/upload-artifact action to store files as workflow artifa... |
examples/actions-store-and-share-data-with-workflow-artifacts-github-docs-github--4.text | A YAML workflow snippet demonstrating how to use the actions/download-artifact action to retrieve a specific artifact. | Exact payloads, commands, or snippets shown in A YAML workflow snippet demonstrating how to use the actions/download-artifact action to retrieve a specific artifact. |
examples/actions-store-and-share-data-with-workflow-artifacts-github-docs-github--5.text | A YAML workflow snippet demonstrating how to use the actions/download-artifact action to retrieve workflow run artifacts. | Exact payloads, commands, or snippets shown in A YAML workflow snippet demonstrating how to use the actions/download-artifact action to retrieve workflow run artifa... |
examples/actions-store-and-share-data-with-workflow-artifacts-github-docs-github--6.text | A YAML workflow demonstrating how to upload a text file as an artifact in one job and download it in a subsequent job using actions/upload-artifact and actions/download-artifact. | Exact payloads, commands, or snippets shown in A YAML workflow demonstrating how to upload a text file as an artifact in one job and download it in a subsequent job... |
What This Skill Covers
-
- GitHub Actions / - Tutorials / - Store and share data
- Main sections:
In this article,Prerequisites,Uploading build and test artifacts,Example,Downloading artifacts during a workflow run.
Workflow
- Open the most relevant file under
docs/for the exact documented workflow and wording. - Open
schemas/files for exact structured contracts. - Open
examples/files for concrete requests, commands, snippets, and manifests. - Do not add behavior or configuration that is not present in the attached source files.
Canonical source: https://docs.github.com/en/actions/tutorials/store-and-share-data
