Skip to content

Commit eb12565

Browse files
committed
fix: semantic release tagging
1 parent b50c4cb commit eb12565

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/cicd.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,6 @@ jobs:
121121
- name: Install dependencies
122122
run: bun install
123123

124-
- name: Run build
125-
run: bun run build
126-
127124
- name: release
128125
env:
129126
GITHUB_TOKEN: ${{ secrets.CUSTOM_GH_TOKEN }}

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,16 +78,16 @@
7878
],
7979
"@semantic-release/release-notes-generator",
8080
"@semantic-release/changelog",
81-
"@semantic-release/npm",
8281
[
8382
"@semantic-release/exec",
8483
{
85-
"prepareCmd": "npm run build"
84+
"publishCmd": "bun run build"
8685
}
8786
],
8887
[
8988
"@semantic-release/npm",
9089
{
90+
"npmPublish": true,
9191
"pkgRoot": "dist"
9292
}
9393
],
@@ -110,6 +110,7 @@
110110
],
111111
"prepare": [
112112
"@semantic-release/changelog",
113+
"@semantic-release/exec",
113114
"@semantic-release/npm",
114115
"@semantic-release/git"
115116
]

0 commit comments

Comments
 (0)