I've a Azure Devops pipeline that build commit version and tag in my application.
I use, composer-version minor|major|patch
to create application version , that write version in composer.json
Also, i use git push -u origin HEAD:master --tags
to commit the version of my application. This command can push the file that have the version, but can't create new tag.
Can someone have an idea about this ?