Skip to content

Upload IPFS

Sergii Bomko edited this page Mar 11, 2020 · 2 revisions

There is a GitHub Action which allows to upload a DApp to IPFS on Marketplace.

In order to use it, you need to add step to main.yml.

- uses: aquiladev/[email protected]
  id: upload
  with:
    path: ./build

There will be a build artifact on a runner after steps (usually in directory build or dist). You need to pass the directory as a path parameter.

The step will have hash output — it is needed for later use. Token ${{ steps.upload.outputs.hash }} can be used in next steps where upload is the id of current step.


Clone this wiki locally