Skip to content

Commit f702435

Browse files
committed
fix: 시맨틱 릴리즈 의존성 추가
1 parent c2217f1 commit f702435

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/deploy-dev.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,12 @@ jobs:
104104
with:
105105
node-version: '22'
106106

107+
- name: Install Semantic Release dependencies
108+
run: npm install semantic-release @semantic-release/commit-analyzer @semantic-release/release-notes-generator conventional-changelog-conventionalcommits
109+
107110
- name: Semantic Release
108111
run: |
109-
OUTPUT=$(npx semantic-release --no-ci)
112+
OUTPUT=$(./node_modules/.bin/semantic-release --no-ci)
110113
echo "$OUTPUT"
111114
VERSION=$(echo "$OUTPUT" | grep -oP 'Published release \K[0-9.]+')
112115
if [ -z "$VERSION" ]; then

0 commit comments

Comments
 (0)