Skip to content

Commit

Permalink
Fix deploy actions (#258)
Browse files Browse the repository at this point in the history
* add deploy actions

* fix deploy actions
  • Loading branch information
kovart authored Feb 13, 2024
1 parent 94356c5 commit 51c9be4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-subgraph-theGraph-a.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
- name: Install subgraph dependencies
working-directory: ./subgraph
run: npm install
run: yarn install

- name: Prepare for subgraph deployment
working-directory: ./subgraph
run: npm run prepare
run: yarn run prepare

- name: Deploy subgraph
working-directory: ./subgraph
run: npm run deploy-theGraph-a
run: yarn run deploy-theGraph-a
6 changes: 3 additions & 3 deletions .github/workflows/deploy-subgraph-theGraph-b.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
- name: Install subgraph dependencies
working-directory: ./subgraph
run: npm install
run: yarn install

- name: Prepare for subgraph deployment
working-directory: ./subgraph
run: npm run prepare
run: yarn run prepare

- name: Deploy subgraph
working-directory: ./subgraph
run: npm run deploy-theGraph-b
run: yarn run deploy-theGraph-b

0 comments on commit 51c9be4

Please sign in to comment.