Skip to content

update actions/checkout file in test.yml #6

update actions/checkout file in test.yml

update actions/checkout file in test.yml #6

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@v3
with:
node-version: 20
- name: Checkout Code
uses: actions/checkout@v3
- 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 }}