-
Notifications
You must be signed in to change notification settings - Fork 7
67 lines (66 loc) · 1.97 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
name: Deploy subgraph
on:
push:
branches: ["main"]
workflow_dispatch:
jobs:
deploy-hosted-service:
runs-on: ubuntu-latest
strategy:
matrix:
chain:
- "arbitrum-one"
- "avalanche"
- "bsc"
- "celo"
- "core"
- "fantom"
- "fuse"
- "goerli"
- "mainnet"
- "matic"
- "xdai"
- "optimism"
- "moonbeam"
- "tombchain"
- "sepolia"
environment:
name: ${{ matrix.chain }}
# Use TheGraph Hosted Service for all networks
url: ${{ format('https://thegraph.com/hosted-service/subgraph/requestnetwork/request-payments-{0}', matrix.chain) }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/deploy
with:
chain: ${{ matrix.chain }}
token: ${{ secrets.THEGRAPH_TOKEN }}
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"
token: ${{ secrets.THEGRAPH_CORE_TOKEN }}
deploy-mantle:
runs-on: ubuntu-latest
strategy:
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 }}
token: ""