trigger pools deploy #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy v3 Pools Subgraphs | ||
on: | ||
push: | ||
branches: main | ||
paths: | ||
- "subgraphs/v3-pools/**" | ||
jobs: | ||
deploy-mainnet: | ||
uses: ./.github/workflows/deploy-subgraph.yml | ||
Check failure on line 9 in .github/workflows/deploy-v3-pools.yml GitHub Actions / .github/workflows/deploy-v3-pools.ymlInvalid workflow file
|
||
with: | ||
working-directory: subgraphs/v3-pools | ||
subgraph-name: balancer-pools-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-pools | ||
subgraph-name: balancer-pools-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-pools | ||
subgraph-name: balancer-pools-v3-sepolia | ||
manifest-file: subgraph.sepolia.yaml | ||
secrets: | ||
GRAPH_DEPLOY_KEY: ${{ secrets.GRAPH_DEPLOY_KEY }} |