Skip to content
This repository was archived by the owner on Feb 7, 2024. It is now read-only.

Commit 10c76d2

Browse files
committed
add CI action for installing, initializing, and running go-ipfs
1 parent 968adac commit 10c76d2

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: installipfs
2+
description: install go-ipfs
3+
4+
runs:
5+
using: "composite"
6+
steps:
7+
- name: Install go-ipfs
8+
shell: bash
9+
run: (cd /tmp && go install github.com/ipfs/go-ipfs/cmd/ipfs@master)
10+
- name: Initialize go-ipfs
11+
shell: bash
12+
run: (ipfs init)
13+
- name: Run go-ipfs
14+
shell: bash
15+
run: (ipfs daemon --enable-pubsub-experiment &)

0 commit comments

Comments
 (0)