Skip to content

Commit

Permalink
test conditional step
Browse files Browse the repository at this point in the history
  • Loading branch information
itsMarcoSolis committed Aug 30, 2023
1 parent 13c7940 commit 80766f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy_subgraphs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ jobs:
run: graph auth --studio ${{ secrets.THE_GRAPH_STUDIO_TOKEN }}

- name: Build and deploy eip1155 Subgraph
if: steps.filter.outputs.eip1155 == 'true'
if: steps.filter.outputs.eip1155 == 'true'
run: |
cd ${{ github.workspace }}/subgraphs/generated/live/goerli/eip1155
graph codegen
graph build
# graph deploy --studio otomee-eip1155-goerli
- name: Build and deploy eip721 Subgraph
if: steps.filter.outputs.eip721 == 'true'
if: ${{ steps.filter.outputs.eip721 == 'true' }}
run: |
cd ${{ github.workspace }}/subgraphs/generated/live/goerli/eip721
graph codegen
Expand Down
2 changes: 1 addition & 1 deletion subgraphs/generated/live/goerli/eip1155/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ type Transaction @entity(immutable: true) {
timestamp: BigInt!
blockNumber: BigInt!
events: [Event!]! @derivedFrom(field: "transaction")
}
}

0 comments on commit 80766f5

Please sign in to comment.