-
Notifications
You must be signed in to change notification settings - Fork 7
71 lines (68 loc) · 2.02 KB
/
deploy.yaml
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
name: Deploy subgraph
on:
push:
branches: ["main"]
workflow_dispatch:
jobs:
deploy-thegraph-studio:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
chain:
- "arbitrum-one"
- "avalanche"
- "base"
- "bsc"
- "celo"
- "fantom"
- "fuse"
- "mainnet"
- "matic"
- "moonbeam"
- "near"
- "near-testnet"
- "optimism"
- "sepolia"
- "xdai"
- "zksyncera"
environment:
name: ${{ matrix.chain }}
url: ${{ format('https://api.studio.thegraph.com/query/67444/request-payments-{0}/version/latest', matrix.chain) }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/deploy
with:
chain: ${{ matrix.chain }}
deploy-key: ${{ secrets.SUBGRAPH_STUDIO_DEPLOY_KEY_RN }}
deploy-core:
runs-on: ubuntu-latest
environment:
name: core
# Use Core DAO Foundation graph node for Core
url: "https://thegraph.coredao.org/subgraphs/name/requestnetwork/request-payments-core"
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/deploy
with:
chain: "core"
deploy-key: ${{ secrets.THEGRAPH_CORE_TOKEN }}
deploy-mantle:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
chain:
- "mantle-testnet"
- "mantle"
environment:
name: ${{ matrix.chain }}
# Use Mantle Foundation graph node for Mantle Testnet
# Use FuxionX graph node for Mantle
url: ${{ matrix.chain == 'mantle-testnet' && 'https://graph.testnet.mantle.xyz/subgraphs/name/requestnetwork/request-payments-mantle-testnet' || matrix.chain == 'mantle' && 'https://graph.fusionx.finance/subgraphs/name/requestnetwork/request-payments-mantle' }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/deploy
with:
chain: ${{ matrix.chain }}
deploy-key: ""