Skip to content

refactor: isBuyNow to isBought #30

refactor: isBuyNow to isBought

refactor: isBuyNow to isBought #30

Workflow file for this run

name: Deploy to Satsuma Service
on:
push:
tags:
- "*"
jobs:
buildAndDeploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install node
uses: actions/setup-node@v1
with:
node-version: 18
- name: Install Yarn
run: npm i -g yarn
- name: Install Libs
run: yarn --frozen-lockfile
- name: Codegen
run: yarn codegen
- name: Build
run: yarn build
- name: Deploy to Satsuma
run: |
npx graph deploy aavegotchi-gbm-baazaar-matic \
--deploy-key ${{secrets.SATSUMA_ACCESS_TOKEN}} \
--node https://subgraphs.alchemy.com/api/subgraphs/deploy \
--ipfs https://ipfs.satsuma.xyz \
--version-label ${GITHUB_REF#refs/*/}
shell: bash