chore: prepare configs for Amoy network (#690) #519
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 subgraph to testing env | |
on: | |
workflow_dispatch: | |
branches: [main] | |
push: | |
paths: | |
- packages/subgraph/** | |
jobs: | |
deploy: | |
if: github.ref_name == 'main' | |
runs-on: ubuntu-latest | |
name: Deploy subgraph | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
cache: "npm" | |
- name: Turbo Cache | |
id: turbo-cache | |
uses: actions/cache@v3 | |
with: | |
path: .turbo | |
key: turbo-${{ runner.os }}-${{ github.sha }} | |
restore-keys: | | |
turbo-${{ runner.os }} | |
- run: npm ci | |
- id: build | |
run: npm run build -- --cache-dir=".turbo" | |
- name: Authenticate The Graph CLI | |
run: npx graph auth --product hosted-service ${{ secrets.THE_GRAPH_ACCESS_TOKEN_TESTING }} | |
- name: Deploy subgraph to amoy | |
run: cd ./packages/subgraph && npm run deploy:testing:amoy | |
- name: Deploy subgraph to sepolia | |
run: cd ./packages/subgraph && npm run deploy:testing:sepolia |