Skip to content

Commit

Permalink
fix: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
jaybuidl committed Jan 4, 2024
1 parent f0f72b5 commit 271858d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-subgraph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:
egress-policy: audit

- name: Validate Network environment variable
if: ${{!startsWith(env.NETWORK, 'arbitrum')}}
run: echo ${{env.NETWORK}} && exit 1
if: ${{!startsWith(vars.NETWORK, 'arbitrum')}}
run: echo ${{vars.NETWORK}} && exit 1

- name: Checkout code
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
if: ${{ inputs.update }}
run: |
export PATH=$PWD/../bin:$PATH
yarn update:${{ inputs.subgraph }}:${{ env.NETWORK }}
yarn update:${{ inputs.subgraph }}:${{ vars.NETWORK }}
working-directory: subgraph

- name: Build the subgraph
Expand All @@ -84,5 +84,5 @@ jobs:
working-directory: subgraph

- name: Deploy the subgraph
run: yarn deploy:${{ inputs.subgraph }}:${{ env.NETWORK }}
run: yarn deploy:${{ inputs.subgraph }}:${{ vars.NETWORK }}
working-directory: subgraph

0 comments on commit 271858d

Please sign in to comment.