Skip to content

Commit 432151a

Browse files
committed
chore: debug workflow
1 parent 6abf5cd commit 432151a

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,23 @@ jobs:
4545
- name: Build packages
4646
run: pnpm build
4747

48+
- name: Debug changesets
49+
run: |
50+
echo "=== .changeset files ==="
51+
ls -la .changeset/
52+
echo ""
53+
echo "=== Contents of changeset files ==="
54+
for f in .changeset/*.md; do
55+
echo "--- $f ---"
56+
cat "$f"
57+
done
58+
echo ""
59+
echo "=== git status ==="
60+
git status
61+
echo ""
62+
echo "=== git log (last 5) ==="
63+
git log --oneline -5
64+
4865
- name: Create Release Pull Request or Publish to npm
4966
id: changesets
5067
uses: changesets/action@6a0a831ff30acef54f2c6aa1cbbc1096b066edaf

0 commit comments

Comments
 (0)