Skip to content

Commit 087988a

Browse files
committed
fix: 9
1 parent 76d8432 commit 087988a

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/release-new-version.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,13 @@ jobs:
2929
fetch-depth: 1
3030
clean: false
3131

32-
- name: Fetch tags
33-
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
32+
- name: Fetch last tag
33+
run: |
34+
git fetch --tags --depth=1
35+
LAST_TAG=$(git describe --tags --abbrev=0 || echo "none")
36+
if [ "$LAST_TAG" != "none" ]; then
37+
git fetch --shallow-since=$(git log -1 --format=%ai $LAST_TAG)
38+
fi
3439
3540
- name: Setup Bun
3641
uses: oven-sh/setup-bun@v2

packages/daisyui/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919

2020

21+
2122
</div>
2223

2324
# daisyUI 5

0 commit comments

Comments
 (0)