Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carlosperate/download-file-action
GitHub Action to download a file from the internet into the workspace to use in your workflow.
https://github.com/carlosperate/download-file-action
actions github-action github-actions hacktoberfest
Last synced: 8 days ago
JSON representation
GitHub Action to download a file from the internet into the workspace to use in your workflow.
- Host: GitHub
- URL: https://github.com/carlosperate/download-file-action
- Owner: carlosperate
- License: mit
- Created: 2020-03-06T00:09:54.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-26T22:13:03.000Z (5 months ago)
- Last Synced: 2024-11-03T15:41:46.297Z (12 days ago)
- Topics: actions, github-action, github-actions, hacktoberfest
- Language: JavaScript
- Homepage: https://github.com/marketplace/actions/download-file-to-workspace
- Size: 675 KB
- Stars: 27
- Watchers: 5
- Forks: 7
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# download-file-action
![Workflow To Test Action](https://github.com/carlosperate/download-file-action/workflows/Workflow%20To%20Test%20Action/badge.svg)
GitHub Action to download a file from the internet into the workspace.
## Inputs
- `file-url`: **(Required)** The URL of the file to download.
- `file-name`: *(Optional)* A new filename to rename the downloaded file.
- `location`: *(Optional)* A path to download the file.
- `md5`: *(Optional)* An MD5 hash to verify the download.
- `sha256`: *(Optional)* An SHA256 hash to verify the download.## Outputs
- `file-path`: The absolute path to the downloaded file.
## Example usage
In its simplest form you can you indicate what file to download and use it:
```yaml
- name: Download a file
uses: carlosperate/download-file-action@v2
with:
file-url: 'https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py'
- name: Check the file is there
run: ls -l get-poetry.py
```To use all the options:
```yml
- name: Download a file
uses: carlosperate/download-file-action@v2
id: download-file
with:
file-url: 'https://github.com/carlosperate/download-file-action/archive/refs/tags/v1.0.3.tar.gz'
file-name: 'new_filename.tar.gz'
location: './new-folder-to-be-created'
md5: 'e3b51204dedc75588ca164a26b51610d'
sha256: '76ef5cf6e910a4955f713fb36cca6f90ffeee6ffafe743754716e149d68136de'
- name: Print the file path (new-folder-to-be-created/new_filename.tar.gz)
run: echo "The file was downloaded to ${{ steps.download-file.outputs.file-path }}"
```