Skip to content

Commit df347ca

Browse files
committed
workflows
1 parent d1605e5 commit df347ca

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

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

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,17 @@ jobs:
4545
- name: Build package
4646
run: bun run --bun build
4747

48-
- name: Build bundle
49-
run: bun run --bun bundle
48+
# - name: Build bundle
49+
# run: bun run --bun bundle
5050

51-
- name: Run release command
51+
- name: Config Git
5252
run: |
5353
git config --local user.email "pouya.saadeghi@gmail.com"
5454
git config --local user.name "Pouya Saadeghi"
55-
git add --all packages/bundle/
55+
56+
- name: Run release command
57+
run: |
58+
# git add --all packages/bundle/
5659
cd packages/daisyui
5760
bunx commit-and-tag-version --commit-all --infile ../../CHANGELOG.md ${{ inputs.release-type }}
5861

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,23 @@ All notable changes to this project will be documented in this file. See [commit
44

55
## 5.0.16 (2025-04-07)
66

7+
### Bug Fixes
8+
9+
* fix: collapse-content transition duplicate, transition typo (#3761)
10+
* fix tabs-box render issue on Nuxt. closes: #3724
11+
712
## 5.0.15 (2025-04-07)
813

14+
### Bug Fixes
15+
16+
* dropdown-center RTL, modal gutter, collapse-content animation
17+
918
## 5.0.14 (2025-04-07)
1019

20+
### Bug Fixes
21+
22+
* workaround for lightningcss issue of color mix in `&:before`. closes: #3758, closes: #3755
23+
1124
## 5.0.13 (2025-04-06)
1225

1326

packages/daisyui/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@
6666
"daisyui.css",
6767
"themes.css"
6868
],
69+
"commit-and-tag-version": {
70+
"scripts": {
71+
"postbump": "cd ../.. && bun run --bun bundle && git add --all packages/bundle/"
72+
}
73+
},
6974
"scripts": {
7075
"build": "bun build.js"
7176
}

0 commit comments

Comments
 (0)