Skip to content

Commit

Permalink
ci: add codegen before deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
coreyar committed Dec 12, 2024
1 parent d751866 commit 913db22
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,11 @@ jobs:

- name: Install deps
run: yarn

- name: Codegen
run: |
yarn prepare:docker
yarn codegen
- name: Release subgraph
env:
Expand Down Expand Up @@ -186,6 +191,11 @@ jobs:

- name: Install deps
run: yarn

- name: Codegen
run: |
yarn prepare:docker
yarn codegen
- name: Release subgraph
env:
Expand Down Expand Up @@ -214,6 +224,11 @@ jobs:
- name: Install deps
run: yarn

- name: Codegen
run: |
yarn prepare:docker
yarn codegen
- name: Release subgraph
env:
MAINNET_GRAPH_CLI_API_KEY: ${{ secrets.MAINNET_GRAPH_CLI_API_KEY }}
Expand Down Expand Up @@ -241,6 +256,11 @@ jobs:
- name: Install deps
run: yarn

- name: Codegen
run: |
yarn prepare:docker
yarn codegen
- name: Release subgraph
env:
MAINNET_GRAPH_CLI_API_KEY: ${{ secrets.MAINNET_GRAPH_CLI_API_KEY }}
Expand All @@ -267,6 +287,11 @@ jobs:

- name: Install deps
run: yarn

- name: Codegen
run: |
yarn prepare:docker
yarn codegen
- name: Release subgraph
env:
Expand Down Expand Up @@ -295,6 +320,11 @@ jobs:
- name: Install deps
run: yarn

- name: Codegen
run: |
yarn prepare:docker
yarn codegen
- name: Release subgraph
env:
MAINNET_GRAPH_CLI_API_KEY: ${{ secrets.MAINNET_GRAPH_CLI_API_KEY }}
Expand Down

0 comments on commit 913db22

Please sign in to comment.