Artifacts
Why Use Artifacts
Uploading Artifacts
Basic Example
name: Build and Save Output
on: [push]
jobs:
build:
runs-on: windows10-S5K
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Run build script
run: ./build.sh
- name: Upload build output
uses: actions/upload-artifact@v3
with:
name: build-output
path: dist/Uploading Individual Files
Uploading with Wildcard Patterns
Upload Inputs Reference
Input
Description
Default
Upload Outputs
Output
Description
Downloading Artifacts
Download in a Subsequent Job
Download Inputs Reference
Input
Description
Default
Downloading from the Copia Web UI
Important Limitations
Last updated
Was this helpful?
