-
Notifications
You must be signed in to change notification settings - Fork 11
116 lines (104 loc) · 3.44 KB
/
deploy-v3-pools.yml
File metadata and controls
116 lines (104 loc) · 3.44 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
name: Deploy v3 Pools Subgraphs
on:
push:
branches: main
paths:
- "subgraphs/v3-pools/**"
workflow_dispatch:
jobs:
deploy-mainnet:
uses: ./.github/workflows/deploy-studio.yml
with:
working-directory: subgraphs/v3-pools
subgraph-name: balancer-pools-v3
manifest-file: subgraph.yaml
secrets:
STUDIO_DEPLOY_KEY: ${{ secrets.STUDIO_DEPLOY_KEY }}
deploy-gnosis:
uses: ./.github/workflows/deploy-studio.yml
with:
working-directory: subgraphs/v3-pools
subgraph-name: balancer-pools-v3-gnosis
manifest-file: subgraph.gnosis.yaml
secrets:
STUDIO_DEPLOY_KEY: ${{ secrets.STUDIO_DEPLOY_KEY }}
deploy-sepolia:
uses: ./.github/workflows/deploy-studio.yml
with:
working-directory: subgraphs/v3-pools
subgraph-name: balancer-pools-v3-sepolia
manifest-file: subgraph.sepolia.yaml
secrets:
STUDIO_DEPLOY_KEY: ${{ secrets.STUDIO_DEPLOY_KEY }}
deploy-arbitrum:
uses: ./.github/workflows/deploy-studio.yml
with:
working-directory: subgraphs/v3-pools
subgraph-name: balancer-pools-v3-arbitrum
manifest-file: subgraph.arbitrum-one.yaml
secrets:
STUDIO_DEPLOY_KEY: ${{ secrets.STUDIO_DEPLOY_KEY }}
deploy-base:
uses: ./.github/workflows/deploy-studio.yml
with:
working-directory: subgraphs/v3-pools
subgraph-name: balancer-pools-v3-base
manifest-file: subgraph.base.yaml
secrets:
STUDIO_DEPLOY_KEY: ${{ secrets.STUDIO_DEPLOY_KEY }}
deploy-sonic:
uses: ./.github/workflows/deploy-studio.yml
with:
working-directory: subgraphs/v3-pools
subgraph-name: balancer-pools-v3-sonic
manifest-file: subgraph.sonic.yaml
secrets:
STUDIO_DEPLOY_KEY: ${{ secrets.STUDIO_DEPLOY_KEY }}
deploy-avalanche:
uses: ./.github/workflows/deploy-studio.yml
with:
working-directory: subgraphs/v3-pools
subgraph-name: balancer-pools-v3-avalanche
manifest-file: subgraph.avalanche.yaml
secrets:
STUDIO_DEPLOY_KEY: ${{ secrets.STUDIO_DEPLOY_KEY }}
deploy-optimism:
uses: ./.github/workflows/deploy-studio.yml
with:
working-directory: subgraphs/v3-pools
subgraph-name: balancer-pools-v3-optimism
manifest-file: subgraph.optimism.yaml
secrets:
STUDIO_DEPLOY_KEY: ${{ secrets.STUDIO_DEPLOY_KEY }}
deploy-xlayer:
uses: ./.github/workflows/deploy-studio.yml
with:
working-directory: subgraphs/v3-pools
subgraph-name: balancer-pools-v-3-x-layer
manifest-file: subgraph.xlayer-mainnet.yaml
secrets:
STUDIO_DEPLOY_KEY: ${{ secrets.STUDIO_DEPLOY_KEY }}
deploy-plasma-goldsky:
uses: ./.github/workflows/deploy-goldsky.yml
with:
working-directory: subgraphs/v3-pools
subgraph-name: balancer-pools-v3-plasma
manifest-file: subgraph.plasma-mainnet.yaml
secrets:
GOLDSKY_API_KEY: ${{ secrets.GOLDSKY_API_KEY }}
deploy-hyperevm-goldsky:
uses: ./.github/workflows/deploy-goldsky.yml
with:
working-directory: subgraphs/v3-pools
subgraph-name: balancer-pools-v3-hyperevm
manifest-file: subgraph.hyperevm.yaml
secrets:
GOLDSKY_API_KEY: ${{ secrets.GOLDSKY_API_KEY }}
deploy-monad:
uses: ./.github/workflows/deploy-studio.yml
with:
working-directory: subgraphs/v3-pools
subgraph-name: balancer-pools-v-3-monad
manifest-file: subgraph.monad.yaml
secrets:
STUDIO_DEPLOY_KEY: ${{ secrets.STUDIO_DEPLOY_KEY }}