Skip to content

Commit

Permalink
fix: use format() to concatenate hosted service url with chain name (#60
Browse files Browse the repository at this point in the history
)
  • Loading branch information
MantisClone authored Sep 7, 2023
1 parent a7c9b26 commit 8e82d52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
# Use Mantle Foundation graph node for Mantle Testnet
# Use FuxionX graph node for Mantle
# Use TheGraph Hosted Service for all other networks
url: ${{ matrix.chain == 'mantle-testnet' && 'https://graph.testnet.mantle.xyz/subgraphs/name/request-payments-mantle-testnet' || matrix.chain == 'mantle' && 'https://index.graph.fusionx.finance/subgraphs/name/request-payments-mantle' || 'https://thegraph.com/hosted-service/subgraph/requestnetwork/request-payments-' + matrix.chain }}
url: ${{ matrix.chain == 'mantle-testnet' && 'https://graph.testnet.mantle.xyz/subgraphs/name/request-payments-mantle-testnet' || matrix.chain == 'mantle' && 'https://index.graph.fusionx.finance/subgraphs/name/request-payments-mantle' || format('https://thegraph.com/hosted-service/subgraph/requestnetwork/request-payments-{0}', matrix.chain) }}
steps:
- uses: actions/checkout@v3
- name: Get yarn cache directory path
Expand Down

0 comments on commit 8e82d52

Please sign in to comment.