Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- master

pull_request: # all pull requests

jobs:
Expand All @@ -26,6 +27,17 @@ jobs:
- name: Build
run: yarn build

- name: IPFS
uses: aquiladev/ipfs-action@master
id: ipfs
with:
path: ./build
service: infura
infuraProjectId: ${{ secrets.INFURA_PROJECT_ID }}
infuraProjectSecret: ${{ secrets.INFURA_PROJECT_SECRET }}
- name: IPFS CID
run: echo "The IPFS CID is ${{ steps.ipfs.outputs.cid }}"

- name: Pack
uses: montudor/action-zip@v1
with:
Expand Down