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 f5aa239 commit 32ddc03Copy full SHA for 32ddc03
.github/workflows/release.yml
@@ -194,6 +194,8 @@ jobs:
194
with:
195
node-version: '24.x'
196
197
+ - run: npm ci
198
+
199
- name: Configure Git
200
run: |
201
git config user.name "cloudinary-bot"
@@ -215,9 +217,7 @@ jobs:
215
217
216
218
echo "::group::Calculating next version"
219
- npm install -g conventional-recommended-bump conventional-changelog-cli
-
220
- BUMP_TYPE=$(conventional-recommended-bump -p angular 2>/dev/null || echo "")
+ BUMP_TYPE=$(npx conventional-recommended-bump -p angular 2>/dev/null || echo "")
221
222
if [[ -z "$BUMP_TYPE" || "$BUMP_TYPE" == "null" ]]; then
223
echo "::notice::No conventional commits found; skipping release PR creation"
0 commit comments