Merge pull request #105 from balancer/fix-emissions-injection #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Graph Studio | |
on: | |
push: | |
branches: [master] | |
jobs: | |
deploy-mainnet: | |
runs-on: ubuntu-latest | |
environment: graph | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Install | |
run: yarn --frozen-lockfile | |
- name: Codegen | |
run: yarn codegen | |
- uses: balancer-labs/graph-deploy@v0.0.1 | |
with: | |
graph_deploy_key: ${{secrets.GRAPH_NEW_DEPLOY_KEY}} | |
graph_version_label: ${GITHUB_SHA::8} | |
graph_subgraph_name: "balancer-gauges" | |
graph_account: "balancer-labs" | |
graph_config_file: "subgraph.yaml" | |
graph_deploy_studio: true | |
deploy-goerli: | |
runs-on: ubuntu-latest | |
environment: graph | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Install | |
run: yarn --frozen-lockfile | |
- name: Codegen | |
run: yarn codegen | |
- uses: balancer-labs/graph-deploy@v0.0.1 | |
with: | |
graph_deploy_key: ${{secrets.GRAPH_NEW_DEPLOY_KEY}} | |
graph_version_label: ${GITHUB_SHA::8} | |
graph_subgraph_name: "balancer-gauges-goerli" | |
graph_account: "balancer-labs" | |
graph_config_file: "subgraph.goerli.yaml" | |
graph_deploy_studio: true | |
deploy-arbitrum: | |
runs-on: ubuntu-latest | |
environment: graph | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Install | |
run: yarn --frozen-lockfile | |
- name: Codegen | |
run: yarn codegen | |
- uses: balancer-labs/graph-deploy@v0.0.1 | |
with: | |
graph_deploy_key: ${{secrets.GRAPH_NEW_DEPLOY_KEY}} | |
graph_version_label: ${GITHUB_SHA::8} | |
graph_subgraph_name: "balancer-gauges-arbitrum" | |
graph_account: "balancer-labs" | |
graph_config_file: "subgraph.arbitrum.yaml" | |
graph_deploy_studio: true | |
deploy-polygon: | |
runs-on: ubuntu-latest | |
environment: graph | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Install | |
run: yarn --frozen-lockfile | |
- name: Codegen | |
run: yarn codegen | |
- uses: balancer-labs/graph-deploy@v0.0.1 | |
with: | |
graph_deploy_key: ${{secrets.GRAPH_NEW_DEPLOY_KEY}} | |
graph_version_label: ${GITHUB_SHA::8} | |
graph_subgraph_name: "balancer-gauges-polygon" | |
graph_account: "balancer-labs" | |
graph_config_file: "subgraph.polygon.yaml" | |
graph_deploy_studio: true | |
deploy-optimism: | |
runs-on: ubuntu-latest | |
environment: graph | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Install | |
run: yarn --frozen-lockfile | |
- name: Codegen | |
run: yarn codegen | |
- uses: balancer-labs/graph-deploy@v0.0.1 | |
with: | |
graph_deploy_key: ${{secrets.GRAPH_NEW_DEPLOY_KEY}} | |
graph_version_label: ${GITHUB_SHA::8} | |
graph_subgraph_name: "balancer-gauges-optimism" | |
graph_account: "balancer-labs" | |
graph_config_file: "subgraph.optimism.yaml" | |
graph_deploy_studio: true | |
deploy-gnosis: | |
runs-on: ubuntu-latest | |
environment: graph | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Install | |
run: yarn --frozen-lockfile | |
- name: Codegen | |
run: yarn codegen | |
- uses: balancer-labs/graph-deploy@v0.0.1 | |
with: | |
graph_deploy_key: ${{secrets.GRAPH_NEW_DEPLOY_KEY}} | |
graph_version_label: ${GITHUB_SHA::8} | |
graph_subgraph_name: "balancer-gauges-gnosis-chain" | |
graph_account: "balancer-labs" | |
graph_config_file: "subgraph.gnosis.yaml" | |
graph_deploy_studio: true | |
deploy-avalanche: | |
runs-on: ubuntu-latest | |
environment: graph | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Install | |
run: yarn --frozen-lockfile | |
- name: Codegen | |
run: yarn codegen | |
- uses: balancer-labs/graph-deploy@v0.0.1 | |
with: | |
graph_deploy_key: ${{secrets.GRAPH_NEW_DEPLOY_KEY}} | |
graph_version_label: ${GITHUB_SHA::8} | |
graph_subgraph_name: "balancer-gauges-avalanche" | |
graph_account: "balancer-labs" | |
graph_config_file: "subgraph.avalanche.yaml" | |
graph_deploy_studio: true | |
deploy-polygon-zkevm: | |
runs-on: ubuntu-latest | |
environment: graph | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Install | |
run: yarn --frozen-lockfile | |
- name: Codegen | |
run: yarn codegen | |
- name: Build | |
run: yarn build | |
- uses: balancer-labs/graph-deploy@v0.0.1 | |
with: | |
graph_deploy_key: ${{secrets.GRAPH_DEPLOY_KEY}} | |
graph_version_label: ${GITHUB_SHA::8} | |
graph_subgraph_name: "balancer-gauges-polygon-zk" | |
graph_account: "balancer-labs" | |
graph_config_file: "subgraph.polygon-zkevm.yaml" | |
graph_deploy_studio: true | |
deploy-sepolia: | |
runs-on: ubuntu-latest | |
environment: graph | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Install | |
run: yarn --frozen-lockfile | |
- name: Codegen | |
run: yarn codegen | |
- name: Build | |
run: yarn build | |
- uses: balancer-labs/graph-deploy@v0.0.1 | |
with: | |
graph_deploy_key: ${{secrets.GRAPH_DEPLOY_KEY}} | |
graph_version_label: ${GITHUB_SHA::8} | |
graph_subgraph_name: "balancer-gauges-sepolia" | |
graph_account: "balancer-labs" | |
graph_config_file: "subgraph.sepolia.yaml" | |
graph_deploy_studio: true | |
deploy-base: | |
runs-on: ubuntu-latest | |
environment: graph | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Install | |
run: yarn --frozen-lockfile | |
- name: Codegen | |
run: yarn codegen | |
- name: Build | |
run: yarn build | |
- uses: balancer-labs/graph-deploy@v0.0.1 | |
with: | |
graph_deploy_key: ${{secrets.GRAPH_DEPLOY_KEY}} | |
graph_version_label: ${GITHUB_SHA::8} | |
graph_subgraph_name: "balancer-gauges-base" | |
graph_account: "balancer-labs" | |
graph_config_file: "subgraph.base.yaml" | |
graph_deploy_studio: true |