You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I run release-it minor --ci for my GitLab repository, release-it bumps a patch version. If I run release-it major --ci, release-it bumps a minor version.
I don’t reproduce the problem for my GitHub repository. I don’t reproduce the problem in interactive mode without the command-line argument --ci.
2. MCVE
2.1. .release-it.yaml
# [INFO] Or without Git optionsgit:
addUntrackedFiles: truecommitArgs: --signoffcommitMessage: "deploy(release-it): release v${version}"requireUpstream: falsetagName: v${version}npm:
publish: falseplugins:
release-it-changelogen:
# [INFO] Or without release-it-changelogen options belowdisableVersion: truetemplates:
commitMessage: "deploy(release-it): release {{newVersion}}"tagMessage: v{{newVersion}}verbose: 2
2.2. Steps to reproduce
npx release-it minor --ci
npx release-it major --ci
2.3. Behavior
2.3.1. Expected — GitHub
When I run Release-it with the command-line argument major, Release-it updates the version from 1.11.1 to 2.0.0:
Uh oh!
There was an error while loading. Please reload this page.
1. Summary
If I run
release-it minor --ci
for my GitLab repository, release-it bumps a patch version. If I runrelease-it major --ci
, release-it bumps a minor version.I don’t reproduce the problem for my GitHub repository. I don’t reproduce the problem in interactive mode without the command-line argument
--ci
.2. MCVE
2.1. .release-it.yaml
2.2. Steps to reproduce
2.3. Behavior
2.3.1. Expected — GitHub
When I run Release-it with the command-line argument
major
, Release-it updates the version from 1.11.1 to 2.0.0:2.3.2. Non-expected — GitLab
When I run Release-it with the command-line argument
minor
, Release-it updates the version from 0.3.6 to 0.3.7, not to 0.4.0:When I run Release-it with the command-line argument
major
, Release-it updates the version from 0.3.7 to 0.4.0, not to 1.0.0:3. Environment
Thanks.
The text was updated successfully, but these errors were encountered: