We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2217f1 commit f702435Copy full SHA for f702435
.github/workflows/deploy-dev.yml
@@ -104,9 +104,12 @@ jobs:
104
with:
105
node-version: '22'
106
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
+
110
- name: Semantic Release
111
run: |
- OUTPUT=$(npx semantic-release --no-ci)
112
+ OUTPUT=$(./node_modules/.bin/semantic-release --no-ci)
113
echo "$OUTPUT"
114
VERSION=$(echo "$OUTPUT" | grep -oP 'Published release \K[0-9.]+')
115
if [ -z "$VERSION" ]; then
0 commit comments