Skip to content

Commit

Permalink
fix: demo environment indexing (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
filo87 authored Oct 24, 2023
1 parent 62094be commit ac16ba8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/subql_deploy_workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Check out repo's default branch
uses: actions/checkout@v3
- name: Generate new project.yaml
run: yq ". *= load(\"chains/$CHAIN_ID.yaml\")" chains/base.yaml > project.yaml
run: yq ". *=d load(\"chains/$CHAIN_ID.yaml\")" chains/base.yaml > project.yaml
- name: Extract Chain Parameters to ENV
run: |
echo "SUBQL_PROJ_NAME=$(yq '.name' project.yaml)" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Check out repo's default branch
uses: actions/checkout@v3
- name: Generate new project.yaml
run: yq ". *= load(\"chains/$CHAIN_ID.yaml\")" chains/base.yaml > project.yaml
run: yq ". *=d load(\"chains/$CHAIN_ID.yaml\")" chains/base.yaml > project.yaml
- name: Setup Node
uses: actions/setup-node@v3
with:
Expand Down
4 changes: 3 additions & 1 deletion chains/demo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ network:
genesisHash: '0xe0e40f62affe742eb92d75c07830671ef3e0cc6efc1ecaf81cf34a28148e91f0'
chaintypes:
file: ./dist/chaintypes.js
bypassBlocks: [ "1-233287"]
dataSources:
- kind: substrate/Runtime
startBlock: 233287

0 comments on commit ac16ba8

Please sign in to comment.