Replies: 2 comments 4 replies
-
The primary mode, version from tags, is intended primarily for scenarios where software is tested before being released and assumes that tagging is part of a formal release strategy with possible additional gates (QA/UAT, etc) which are not automated. If you want to increment the version on every build, consider using the |
Beta Was this translation helpful? Give feedback.
-
This action provides information only. There is no impact on the code unless you use the outputs. You can use this in your build to generate the output artifacts, for example to tag a Docker image. Certain languages have an ambient project version as well which can pretty much always be set from the command line, you can use the output of the action here as well. In any case the specifics depend on your project type. Regarding tags, the configuration you have above is looking for tags like I see you are using version from branch as well, this has additional implications if building on a version branch described in the guide. |
Beta Was this translation helpful? Give feedback.
-
Hello!
I am using the github action but I have an issue. Although on logs of my workflow I get printed the version and the link to create a release, it actually didn't create any tag on my repository.
Meaning, I always need to go to the logs and click the generated link to create a release and therefore the tag on my repo.
How can I get my tag created without the need to create a release?
here is my setup:
Beta Was this translation helpful? Give feedback.
All reactions