Skip to content

Commit

Permalink
fix(ci): parsing "ipfs-cluster-ctl peers ls" output (#1966)
Browse files Browse the repository at this point in the history
  • Loading branch information
hsanjuan committed Aug 9, 2022
1 parent 0de4267 commit 828e460
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
--host "${CLUSTER_HOST}" \
--basic-auth "$CLUSTER_USER:$CLUSTER_PASSWORD" \
peers ls > cluster-peers-ls
for maddr in $(jq -r '.[].ipfs.addresses[]?' cluster-peers-ls); do
for maddr in $(jq -r '.ipfs.addresses[]?' cluster-peers-ls); do
ipfs swarm peering add "$maddr" &
ipfs swarm connect "$maddr" &
done
Expand Down

0 comments on commit 828e460

Please sign in to comment.