We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6abf5cd commit 432151aCopy full SHA for 432151a
1 file changed
.github/workflows/release.yml
@@ -45,6 +45,23 @@ jobs:
45
- name: Build packages
46
run: pnpm build
47
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
59
+ echo "=== git status ==="
60
+ git status
61
62
+ echo "=== git log (last 5) ==="
63
+ git log --oneline -5
64
+
65
- name: Create Release Pull Request or Publish to npm
66
id: changesets
67
uses: changesets/action@6a0a831ff30acef54f2c6aa1cbbc1096b066edaf
0 commit comments