https://github.com/ipfs/start-ipfs-daemon-action
https://github.com/ipfs/start-ipfs-daemon-action
ipdx
Last synced: about 1 month 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 (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2025-05-01T08:39:09.000Z (6 months ago)
- Last Synced: 2025-05-22T07:21:52.248Z (5 months ago)
- Topics: ipdx
- Homepage:
- Size: 31.3 KB
- Stars: 2
- Watchers: 6
- 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
```