Skip to content

Commit

Permalink
ci: symlink workaround
Browse files Browse the repository at this point in the history
Signed-off-by: Tomás Migone <[email protected]>
  • Loading branch information
tmigone committed Mar 19, 2024
1 parent 94bb0e8 commit 8c9b7d7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ runs:
steps:
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Log forge version
shell: bash
run: forge --version
- name: Enable corepack for modern yarn
shell: bash
run: corepack enable
Expand All @@ -23,3 +20,9 @@ runs:
- name: Build
shell: bash
run: yarn build || yarn build
- name: Symlink workaround
shell: bash
run: |
rm packages/token-distribution/node_modules/@graphprotocol/contracts
mkdir packages/token-distribution/node_modules/@graphprotocol/contracts
cp -R packages/contracts/dist packages/token-distribution/node_modules/@graphprotocol/contracts/dist

0 comments on commit 8c9b7d7

Please sign in to comment.