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