diff --git a/.github/workflows/deploy-tags-geist.yml b/.github/workflows/deploy-tags-geist.yml index 49bc2c9..7a40eea 100644 --- a/.github/workflows/deploy-tags-geist.yml +++ b/.github/workflows/deploy-tags-geist.yml @@ -19,10 +19,10 @@ jobs: - name: Install Libs run: yarn --frozen-lockfile - name: Codegen - run: yarn codegen:testnet + run: yarn codegen:geist - name: Build - run: yarn build:testnet - - name: Deploy to Satsuma on test + run: yarn build:geist + - name: Deploy to Satsuma on Geist run: | npx graph deploy aavegotchi-svg-geist \ --deploy-key ${{secrets.SATSUMA_ACCESS_TOKEN}} \ diff --git a/package.json b/package.json index a1f1f07..6dec294 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,8 @@ "codegen:baseSepolia": "graph codegen subgraph.baseSepolia.yaml", "build:testnet": "graph build subgraph.testnet.yaml", "build:baseSepolia": "graph build subgraph.baseSepolia.yaml", + "codegen:geist": "graph codegen subgraph.geist.yaml", + "build:geist": "graph build subgraph.geist.yaml", "deploy": "graph deploy --node https://api.studio.thegraph.com/deploy/ aavegotchi-svgs-subgraph", "create-local": "graph create --node http://localhost:8020/ aavegotchi-svgs-subgraph", "remove-local": "graph remove --node http://localhost:8020/ aavegotchi-svgs-subgraph",