We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c13629 commit a4b8864Copy full SHA for a4b8864
2 files changed
.github/workflows/release-new-version.yml
@@ -33,9 +33,12 @@ jobs:
33
run: |
34
git fetch --tags --depth=1
35
LAST_TAG=$(git describe --tags --abbrev=0 || echo "none")
36
+ echo "Last tag: $LAST_TAG"
37
if [ "$LAST_TAG" != "none" ]; then
38
git fetch --shallow-since=$(git log -1 --format=%ai $LAST_TAG)
39
fi
40
+ echo "Commits since last tag:"
41
+ git log $LAST_TAG..HEAD --oneline
42
43
- name: Setup Bun
44
uses: oven-sh/setup-bun@v2
packages/daisyui/README.md
@@ -19,7 +19,6 @@
19
20
21
22
-
23
</div>
24
25
# daisyUI 5
0 commit comments