Skip to content

remove package.lock file #9

remove package.lock file

remove package.lock file #9

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
- ipfs
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Checkout Code
uses: actions/checkout@v4
- name: Install and Build
run: |
yarn
yarn build
- name: IPFS Deploy 🚀
uses: aquiladev/ipfs-action@master
with:
path: ./build
service: infura
infuraProjectId: ${{ secrets.INFURA_PROJECT_ID }}
infuraProjectSecret: ${{ secrets.INFURA_PROJECT_SECRET }}
- name: IPFS (Pinata)
uses: aquiladev/ipfs-action@master
with:
path: ./build
service: pinata
pinataKey: ${{ secrets.PINATA_KEY }}
pinataSecret: ${{ secrets.PINATA_SECRET }}