kusold/Download Artifact from S3
Download a build artifact from S3 that was previously uploaded in the workflow by the upload-artifact-s3 action
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| name | Name of the artifact to download. If unspecified, all artifacts for the run are downloaded. | no | — |
| path | Destination path. Supports basic tilde expansion. Defaults to $GITHUB_WORKSPACE | no | — |
| pattern | A glob pattern matching the artifacts that should be downloaded. Ignored if name is specified. | no | — |
| merge-multiple | When multiple artifacts are matched, this changes the behavior of the destination directories. If true, the downloaded artifacts will be in the same directory specified by path. If false, the downloaded artifacts will be extracted into individual named directories within the specified path. | no | false |
| repository | The repository owner and the repository name joined together by "/". This is the repository that artifacts will be downloaded from. | no | ${{ github.repository }} |
| run-id | The id of the workflow run where the desired download artifact was uploaded from. | no | ${{ github.run_id }} |
| s3-bucket | S3 bucket name for storing artifacts | yes | — |
| s3-prefix | Optional prefix path within the bucket (e.g., "artifacts/") | no | — |
| s3-endpoint | S3-compatible endpoint URL (for MinIO, Cloudflare R2, etc.) | no | — |
| s3-region | AWS region for the S3 bucket | — | us-east-1 |
| s3-force-path-style | Force path-style URLs (required for some S3-compatible stores) | — | false |
Outputs
| name | description |
|---|---|
| download-path | Path of artifact download |