Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ipfs/start-ipfs-daemon-action
https://github.com/ipfs/start-ipfs-daemon-action
ipdx
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ipfs/start-ipfs-daemon-action
- Owner: ipfs
- License: other
- Created: 2021-12-10T08:16:07.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-31T17:37:07.000Z (11 months ago)
- Last Synced: 2024-10-29T12:11:32.285Z (2 months ago)
- Topics: ipdx
- Homepage:
- Size: 30.3 KB
- Stars: 2
- Watchers: 7
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# Start IPFS Daemon Action
The action starts IPFS daemon and waits for it to become ready.
## Inputs
| Name | Description | Default |
| --- | --- | --- |
| args | Arguments that should be passed to the ipfs daemon command | --init --init-profile server |
| wait-for-addrs | Whether waits for addresses to be assigned to the daemon | true |## Example
```
- uses: ipfs/download-ipfs-distribution-action@v1
- uses: ipfs/start-ipfs-daemon-action@v1
``````
- uses: actions/setup-go@v4
with:
go-version: 'stable'
- run: go install github.com/ipfs/go-ipfs/cmd/ipfs@latest
shell: bash
- uses: ipfs/start-ipfs-daemon-action@v1
```