-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (39 loc) · 1.18 KB
/
deploy-prod-subgraph.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
name: Deploy subgraph to production env
on:
workflow_dispatch:
branches: [main]
inputs:
subgraphVersion:
description: "Subgraph version"
required: true
default: "0.0.1"
type: string
jobs:
deploy:
runs-on: ubuntu-latest
name: Deploy subgraph
env:
SUBGRAPH_VERSION: ${{ github.event.inputs.subgraphVersion }}
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_PRODUCTION }}
- name: Deploy subgraph to Polygon
run: cd ./packages/subgraph && npm run deploy:production
- name: Deploy subgraph to Ethereum
run: cd ./packages/subgraph && npm run deploy:production:ethereum