Closed ADorigi closed 5 months ago
Due to an increase in this Pull Request's scope, I am currently closing this. I will shortly create a new pull request with all the changes.
How about keeping the automatic tagging and just make the release to be triggered manually?
Description
tag
job to create the tags using thegithub.ref_name
, which translates to the pushed tag during workflow run.mathieudutour/github-tag-action
, as we no longer are generating the tags at runtime.v[0-9]+.[0-9]+.[0-9]+
. Example tag -v1.2.3
.v[0-9]+.[0-9]+.[0-9]+-rc
. Example tag -v1.2.3-rc
.tag
job in the future and use thegithub.ref_name
, but keeping it for now as other jobs depend on it.The new steps which will trigger the main workflow:
git tag <new tag>
git push origin --tags
Tested the branch locally and can confirm that the
tag
job runs successfully. It has the same outputs as before.What type of PR(Pull Request) is this?
Added to documentation?