Skip to content

Commit

Permalink
foo
Browse files Browse the repository at this point in the history
  • Loading branch information
vesla0x1 committed Apr 3, 2024
1 parent 095779a commit 9a961e5
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/github-actions-demo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@ jobs:
npx all-relative
cd ..
- name: 'Docker pull'
- name: Docker pull
run: |
docker pull ipfs/kubo:latest
docker pull ipfs/kubo:latest
- name: Start the container
run: |
docker run -d --name ipfs_host -v ${{ github.workspace }}/public:/export -v /tmp:/data/ipfs -p 4001:4001 -p 4001:4001/udp -p 127.0.0.1:8080:8080 -p 127.0.0.1:5001:5001 ipfs/kubo:latest
- name: Add public to IPFS
run: |
docker exec ipfs_host ipfs add -r /export

0 comments on commit 9a961e5

Please sign in to comment.