Skip to content

Merge pull request #790 from hats-finance/develop #224

Merge pull request #790 from hats-finance/develop

Merge pull request #790 from hats-finance/develop #224

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: IPFS Deploy
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install dependencies
run: yarn install --ignore-engines
- name: Build
run: yarn build
env:
CI: false
PUBLIC_URL: ./
REACT_APP_ENCRYPTED_STORAGE_KEY: ${{ secrets.REACT_APP_ENCRYPTED_STORAGE_KEY}}
- name: Install ipfs-deploy
run: npm install -g ipfs-deploy
- name: Deploy to IPFS
working-directory: ./packages/web
run: ipd build --path-to-deploy=build -p pinata
env:
IPFS_DEPLOY_PINATA__API_KEY: ${{ secrets.PINATA_API_KEY }}
IPFS_DEPLOY_PINATA__SECRET_API_KEY: ${{ secrets.PINATA_SECRET_API_KEY }}