Skip to content

chore: update yaml

chore: update yaml #2

name: Deploy to Polter
on:
push:
tags:
- "geist-*"
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:geist
- name: Build
run: yarn build:geist
- name: Deploy to Satsuma on Geist
run: |
npx graph deploy aavegotchi-svg-geist \
--deploy-key ${{secrets.SATSUMA_ACCESS_TOKEN}} \
--node https://subgraphs.alchemy.com/api/subgraphs/deploy \
--ipfs https://ipfs.satsuma.xyz \
--version-label ${GITHUB_REF#refs/*/} \
subgraph.geist.yaml
shell: bash