Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

promote to prod #104

Merged
merged 4 commits into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/[email protected]
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/[email protected]
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/[email protected]
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/[email protected]
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/[email protected]
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/[email protected]
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/[email protected]
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
Loading