We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0d1100 commit f25ae68Copy full SHA for f25ae68
.github/workflows/publish.yml
@@ -108,5 +108,25 @@ jobs:
108
id: changepacks
109
110
- name: Publish to npm
111
- run: pnpm publish
+ run: |
112
+ # Check Git status
113
+ echo "=== Git Status Check ==="
114
+ echo "Current branches:"
115
+ git branch
116
+ echo ""
117
+ echo "Git HEAD status:"
118
+ git rev-parse --abbrev-ref HEAD
119
120
+ echo "Git status:"
121
+ git status
122
123
+ echo "Recent commit:"
124
+ git log -1 --oneline
125
126
+ echo "Remote branch info:"
127
+ git branch -r | grep HEAD || echo "No remote HEAD found"
128
+ echo "==================="
129
130
+
131
+ pnpm publish
132
if: steps.changepacks.outputs.changepacks != ''
0 commit comments