-
Notifications
You must be signed in to change notification settings - Fork 4
60 lines (55 loc) · 1.71 KB
/
deploy-v3-vault.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Deploy v3 Vault Subgraphs
on:
push:
branches: main
paths:
- "subgraphs/v3-vault/**"
jobs:
deploy-mainnet:
uses: ./.github/workflows/deploy-subgraph.yml
with:
working-directory: subgraphs/v3-vault
subgraph-name: balancer-v3
manifest-file: subgraph.yaml
secrets:
GRAPH_DEPLOY_KEY: ${{ secrets.GRAPH_DEPLOY_KEY }}
deploy-gnosis:
uses: ./.github/workflows/deploy-subgraph.yml
with:
working-directory: subgraphs/v3-vault
subgraph-name: balancer-v3-gnosis
manifest-file: subgraph.gnosis.yaml
secrets:
GRAPH_DEPLOY_KEY: ${{ secrets.GRAPH_DEPLOY_KEY }}
deploy-sepolia:
uses: ./.github/workflows/deploy-subgraph.yml
with:
working-directory: subgraphs/v3-vault
subgraph-name: balancer-v3-sepolia
manifest-file: subgraph.sepolia.yaml
secrets:
GRAPH_DEPLOY_KEY: ${{ secrets.GRAPH_DEPLOY_KEY }}
deploy-arbitrum:
uses: ./.github/workflows/deploy-subgraph.yml
with:
working-directory: subgraphs/v3-vault
subgraph-name: balancer-v3-arbitrum
manifest-file: subgraph.arbitrum-one.yaml
secrets:
GRAPH_DEPLOY_KEY: ${{ secrets.GRAPH_DEPLOY_KEY }}
deploy-base:
uses: ./.github/workflows/deploy-subgraph.yml
with:
working-directory: subgraphs/v3-vault
subgraph-name: balancer-v3-base
manifest-file: subgraph.base.yaml
secrets:
GRAPH_DEPLOY_KEY: ${{ secrets.GRAPH_DEPLOY_KEY }}
deploy-sonic:
uses: ./.github/workflows/deploy-subgraph.yml
with:
working-directory: subgraphs/v3-vault
subgraph-name: balancer-v3-vault-sonic
manifest-file: subgraph.sonic.yaml
secrets:
GRAPH_DEPLOY_KEY: ${{ secrets.BEETS_DEPLOY_KEY }}