Skip to content

Commit

Permalink
fix: gha version fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kasparkallas committed Jul 2, 2024
1 parent 0cf2f71 commit 97ada70
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/aw-subgraph-ci-goldsky.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const fs = require('fs');
const packageJson = JSON.parse(fs.readFileSync('./package.json'));
const packageJson = JSON.parse(fs.readFileSync('./subgraphs/wrap-scheduler/package.json'));
return packageJson.version;
- name: Goldsky Login
run: pnpm exec goldsky login --token ${{secrets.GOLDSKY_API_KEY}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fs-subgraph-ci-goldsky.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const fs = require('fs');
const packageJson = JSON.parse(fs.readFileSync('./package.json'));
const packageJson = JSON.parse(fs.readFileSync('./subgraphs/flow-scheduler/package.json'));
return packageJson.version;
- name: Goldsky Login
run: pnpm exec goldsky login --token ${{secrets.GOLDSKY_API_KEY}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vs-subgraph-ci-goldsky.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const fs = require('fs');
const packageJson = JSON.parse(fs.readFileSync('./package.json'));
const packageJson = JSON.parse(fs.readFileSync('./subgraphs/vesting-scheduler/package.json'));
return packageJson.version;
- name: Goldsky Login
run: pnpm exec goldsky login --token ${{secrets.GOLDSKY_API_KEY}}
Expand Down

0 comments on commit 97ada70

Please sign in to comment.