Skip to content

Update graph-studio-develop.yaml #70

Update graph-studio-develop.yaml

Update graph-studio-develop.yaml #70

name: Deploy Graph to Develop
on:
push:
branches: [develop]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v1
with:
node-version: 18
- name: Install
run: yarn --frozen-lockfile
- name: Lint
run: yarn lint
deploy-staging-goerli:
needs: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v1
with:
node-version: 18
- name: Install
run: yarn --frozen-lockfile
- name: Generate Manifest
run: yarn generate-manifests
- uses: gtaschuk/[email protected]
with:
graph_access_token: ${{ secrets.GRAPH_ACCESS_TOKEN }}
graph_subgraph_name: giveth-economy-goerli-staging
graph_account: giveth
graph_config_file: subgraph.deployment-7-goerli.yaml
deploy-staging-gnosis:
needs: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v1
with:
node-version: 18
- name: Install
run: yarn --frozen-lockfile
- name: Generate Manifest
run: yarn generate-manifests
- uses: gtaschuk/[email protected]
with:
graph_access_token: ${{ secrets.GRAPH_ACCESS_TOKEN }}
graph_subgraph_name: giveth-economy-xdai-staging
graph_account: giveth
graph_config_file: subgraph.deployment-7-gnosis.yaml
deploy-staging-optimism-goerli:
needs: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v1
with:
node-version: 18
- name: Install
run: yarn --frozen-lockfile
- name: Generate Manifest
run: yarn generate-manifests
- uses: gtaschuk/[email protected]
with:
graph_access_token: ${{ secrets.GRAPH_ACCESS_TOKEN }}
graph_subgraph_name: giveth-economy-optim-staging
graph_account: giveth
graph_config_file: subgraph.deployment-7-optimism-goerli.yaml
deploy-staging-optimism-sepolia:
needs: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v1
with:
node-version: 18
- name: Install
run: yarn --frozen-lockfile
- name: Generate Manifest
run: yarn generate-manifests
- uses: gtaschuk/[email protected]
with:
graph_access_token: ${{ secrets.GRAPH_ACCESS_TOKEN }}
graph_subgraph_name: giveth-economy-optim-sepolia
graph_account: giveth
graph_config_file: subgraph.deployment-7-optimism-sepolia.yaml