Skip to content

Commit ca35c33

Browse files
committed
fix: add missing working-directory for subgraph deployment steps
1 parent a8392b8 commit ca35c33

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/deploy-subgraph.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,11 @@ jobs:
3535
node-version: '20'
3636

3737
- name: Install dependencies
38+
working-directory: packages/subgraph
3839
run: npm ci
3940

4041
- name: Set Version Label
42+
working-directory: packages/subgraph
4143
id: set_version
4244
run: |
4345
if [[ "${{ github.event.inputs.environment }}" == "staging" ]]; then
@@ -48,6 +50,7 @@ jobs:
4850
fi
4951
5052
- name: Deploy Subgraph
53+
working-directory: packages/subgraph
5154
env:
5255
NETWORK_NAME: ${{ github.event.inputs.networkName }}
5356
VERSION_LABEL: ${{ steps.set_version.outputs.version }}

0 commit comments

Comments
 (0)