1 parent 87b4eef commit b3d5d48Copy full SHA for b3d5d48
1 file changed
.github/workflows/release.yml
@@ -26,6 +26,13 @@ jobs:
26
27
- name: Install dependencies
28
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
36
37
- name: Semantic Release
38
uses: cycjimmy/semantic-release-action@v4
@@ -37,6 +44,11 @@ jobs:
44
env:
45
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39
46
47
+ - name: Git diagnostics (after)
48
+ if: always()
49
50
51
+ git tag -ln --sort=-creatordate | head -n 10
40
52
- name: Rebase released onto main
41
53
if: success()
42
54
run: |
0 commit comments