From 8c9b7d7f58d38c05bca249394757b29c9ad30202 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Migone?= Date: Tue, 19 Mar 2024 17:23:05 -0300 Subject: [PATCH] ci: symlink workaround MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tomás Migone --- .github/actions/setup/action.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index a72e48f80..55e5ea7e2 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -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 @@ -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