Skip to content

Commit b3d5d48

Browse files
committed
fix: debug workflow
1 parent 87b4eef commit b3d5d48

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,13 @@ jobs:
2626

2727
- name: Install dependencies
2828
run: yarn install --frozen-lockfile
29+
30+
- name: Git diagnostics (before)
31+
run: |
32+
git remote -v
33+
git fetch --tags --prune
34+
git describe --tags --always || true
35+
git status
2936
3037
- name: Semantic Release
3138
uses: cycjimmy/semantic-release-action@v4
@@ -37,6 +44,11 @@ jobs:
3744
env:
3845
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3946

47+
- name: Git diagnostics (after)
48+
if: always()
49+
run: |
50+
git fetch --tags --prune
51+
git tag -ln --sort=-creatordate | head -n 10
4052
- name: Rebase released onto main
4153
if: success()
4254
run: |

0 commit comments

Comments
 (0)