Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ipfs/download-ipfs-distribution-action
https://github.com/ipfs/download-ipfs-distribution-action
ipdx
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ipfs/download-ipfs-distribution-action
- Owner: ipfs
- License: other
- Created: 2021-12-09T11:14:40.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-08-12T12:36:08.000Z (5 months ago)
- Last Synced: 2024-12-17T11:40:25.773Z (17 days ago)
- Topics: ipdx
- Homepage:
- Size: 6.76 MB
- Stars: 1
- Watchers: 5
- Forks: 3
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# Download IPFS Distribution Action
The action downloads a distribution from [dist.ipfs.tech](https://dist.ipfs.tech) and puts it on `PATH`.
## Inputs
| Name | Description | Default |
| --- | --- | --- |
| name | Name of the distribution to download | kubo |
| version | Version of the distribution to download | *last stable version* |
| working-directory | Directory where the action is going to be performed; the downloaded artifacts are cleaned up afterwards | runner.temp |
| install-directory | Directory where the executable is going to be copied | **linux, macos:** /usr/local/bin; **windows:** /usr/bin |
| cache | A boolean value to indicate the archive cache should be used | true |## Outputs
| Name | Description | Example |
| --- | --- | --- |
| executable | The name of the executable | ipfs |
| executables | The names of all the executables | ["ipfs"] |
| cache-hit | A boolean value to indicate the archive was downloaded from cache | true |## Example
```
- uses: ipfs/download-ipfs-distribution-action@v1
with:
name: kubo
- run: ipfs --help
shell: bash
```