Skip to content

Commit

Permalink
Merge pull request #104 from balancer/staging
Browse files Browse the repository at this point in the history
promote to prod
  • Loading branch information
mendesfabio committed Jul 9, 2024
2 parents 6995f11 + f05030c commit 1ca38f4
Show file tree
Hide file tree
Showing 10 changed files with 340 additions and 326 deletions.
42 changes: 0 additions & 42 deletions .github/workflows/graph-manual.yaml

This file was deleted.

140 changes: 0 additions & 140 deletions .github/workflows/graph-staging.yaml

This file was deleted.

149 changes: 148 additions & 1 deletion .github/workflows/graph-studio-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,153 @@ on:
branches: [staging]

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-beta"
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-beta"
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-beta"
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-beta"
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-beta"
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-b"
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-beta"
graph_account: "balancer-labs"
graph_config_file: "subgraph.avalanche.yaml"
graph_deploy_studio: true
deploy-polygon-zkevm:
runs-on: ubuntu-latest
environment: graph
Expand Down Expand Up @@ -73,4 +220,4 @@ jobs:
graph_subgraph_name: "balancer-gauges-base-beta"
graph_account: "balancer-labs"
graph_config_file: "subgraph.base.yaml"
graph_deploy_studio: true
graph_deploy_studio: true
Loading

0 comments on commit 1ca38f4

Please sign in to comment.