Update .github/workflows/increase-version.yml
Some checks failed
Increase Version / bump-version (push) Successful in 13s
Increase Version / build-and-run (push) Failing after 0s

This commit is contained in:
2025-03-12 12:32:54 +00:00
parent ba203b5d12
commit d020a12c40

View File

@@ -24,6 +24,11 @@ jobs:
npm version patch --no-git-tag-version
git add package.json package-lock.json
git commit -m "chore: bump version [skip ci]" || echo "No changes to commit"
# Pull the latest changes from the remote main branch before pushing
git pull origin main --rebase
# Push changes to remote main branch
git push origin main
- name: Trigger second pipeline