Skip to content

Commit e3b8fa7

Browse files
authored
ci: Fix publish workflow (#420)
The publishing workflow attempted to run a `yarn build` script that does not exist. In this repository, the `src` directory of each package is published directly with no build step. The publish workflow was fixed by removing the invalid build command. <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Removes the nonexistent `yarn build` step from `.github/workflows/publish-release.yml`, leaving artifact upload of package `src` files intact. > > - **CI / GitHub Actions** > - `/.github/workflows/publish-release.yml`: > - Remove `run: yarn build` step from `publish-release` job. > - Continue uploading `./packages/**/src` and `.yarn-state.yml` as artifacts. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 4d572ab. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent ddd0557 commit e3b8fa7

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

.github/workflows/publish-release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ jobs:
2121
- uses: MetaMask/action-publish-release@v3
2222
env:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24-
- run: yarn build
2524
- name: Upload build artifacts
2625
uses: actions/upload-artifact@v4
2726
with:

0 commit comments

Comments
 (0)