-
Notifications
You must be signed in to change notification settings - Fork 11
62 lines (51 loc) · 1.41 KB
/
deploy-goldsky.yml
File metadata and controls
62 lines (51 loc) · 1.41 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Deploy to Goldsky
on:
workflow_call:
inputs:
working-directory:
required: true
type: string
subgraph-name:
required: true
type: string
manifest-file:
required: true
type: string
secrets:
GOLDSKY_API_KEY:
required: true
jobs:
deploy:
runs-on: ubuntu-latest
environment: graph
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install node
uses: actions/setup-node@v4
with:
node-version: 18
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Generate manifests
run: pnpm generate-manifests
- name: Copy subgraph manifest
working-directory: ${{ inputs.working-directory }}
run: cp ${{ inputs.manifest-file }} subgraph.yaml
- name: Graph Codegen
working-directory: ${{ inputs.working-directory }}
run: pnpm codegen
- name: Build subgraph
working-directory: ${{ inputs.working-directory }}
run: pnpm build
- name: Deploy to Goldsky
uses: goldsky-io/goldsky-deploy@latest
with:
api_key: ${{ secrets.GOLDSKY_API_KEY }}
subgraph_name: ${{ inputs.subgraph-name }}
path: ${{ inputs.working-directory }}