Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eviden-actions/download-release-artifact
GitHub Action that downloads an artifact from a GitHub release
https://github.com/eviden-actions/download-release-artifact
actions artifacts download eviden github release
Last synced: 9 days ago
JSON representation
GitHub Action that downloads an artifact from a GitHub release
- Host: GitHub
- URL: https://github.com/eviden-actions/download-release-artifact
- Owner: eviden-actions
- License: mit
- Created: 2022-02-21T15:57:33.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-10T14:32:14.000Z (7 months ago)
- Last Synced: 2024-04-11T03:08:52.316Z (7 months ago)
- Topics: actions, artifacts, download, eviden, github, release
- Language: Shell
- Homepage:
- Size: 1.32 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# download-release-artifact
GitHub Action that downloads an artifact from a GitHub release (public or private)
[![Release](https://github.com/eviden-actions/download-release-artifact/actions/workflows/on_push.yml/badge.svg#main)](https://github.com/eviden-actions/download-release-artifact/actions/workflows/on_push.yml)
## Prerequisites
This action depends on `jq` and `curl` being installed.
## Usage
```
steps:
- uses: eviden-actions/download-release-artifact@v1
with:
name: 'my-artifact-1.0.0.tgz'
path: './artifacts'
tag: 'v1.0.0'
```### Inputs
| Input | Description | Required |
| :-----: | :------------------------------------------------------: | :------: |
| `name` | The name of the artifact | Yes |
| `path` | The destination folder | No |
| `tag` | The tag of the release | Yes |
| `token` | The Github token. If not provided it uses `GITHUB_TOKEN` | No |