Warning: No tags are present for this repository #107
Replies: 1 comment
-
So if you are using There is an open ticket for enhancing support for branches, since branches commits change and since multiple branches can be present at the same time there are a number of edge cases that require opinionated decisions to be made. At the moment I'd recommend sticking with tags unless the current branching behavior is preferable or necessary. Having said all that, if you have versions that you expect to be used to determine the version you can check that:
If you're still having trouble, follow the steps described here and post the resulting diagnostic information. |
Beta Was this translation helpful? Give feedback.
-
Hi,
I'm trying to implement this action in our repo and no matter what I try I get the following warning:
No tags are present for this repository
I'm running a checkout first and see the latest tag in the output and if I run a $ git tag --points-at HEAD after I do a checkout I see the latest tag below
v5.1.0
Below is my action
id: sem-ver
uses: paulhatch/[email protected]
with:
tag_prefix: v
use_branches: true
major_pattern: (MAJOR)
minor_pattern: (MINOR)
bump_each_commit: true
No matter what I do I get the same error every time. Am I missing something in my setup?
Beta Was this translation helpful? Give feedback.
All reactions