Skip to content

Does it work?

Does it work? #17

Workflow file for this run

name: Deploy Subgraph to Goldsky
on: [push]
jobs:
deploy-subgraph:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install node
uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"
- name: Install dependencies
run: npm install
- name: codegen
run: npm run codegen
- name: build
run: npm run build
- name: Deploy Subgraph
uses: goldsky-io/[email protected]
with:
api_key: ${{ secrets.GOLDSKY_API_KEY }}
subgraph_name: "ethereum-blocks"
path: "."