From e970326cc24dbe993959af44d129d346e8bbc572 Mon Sep 17 00:00:00 2001 From: Murderlon Date: Thu, 31 Jul 2025 16:41:37 +0200 Subject: [PATCH] Debug release.yml --- .github/workflows/release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 93b4d834d..357034cf9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,6 +30,14 @@ jobs: - name: Build run: corepack yarn build + - name: Verify changeset patch is applied + run: | + if ! grep -q "yarn.*npm.*publish" node_modules/@changesets/cli/dist/changesets-cli.esm.js; then + echo "ERROR: Changeset patch is missing - yarn npm publish command not found" + exit 1 + fi + echo "Patch verified: yarn npm publish command found" + - name: Create Release Pull Request or Publish id: changesets uses: changesets/action@v1