We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76d8432 commit 087988aCopy full SHA for 087988a
2 files changed
.github/workflows/release-new-version.yml
@@ -29,8 +29,13 @@ jobs:
29
fetch-depth: 1
30
clean: false
31
32
- - name: Fetch tags
33
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
+ - name: Fetch last tag
+ 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
39
40
- name: Setup Bun
41
uses: oven-sh/setup-bun@v2
packages/daisyui/README.md
@@ -18,6 +18,7 @@
18
19
20
21
+
22
</div>
23
24
# daisyUI 5
0 commit comments