-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tag cannot be found #48
Comments
Are your tags valid semver without the prefix? For example, if you set the prefix to Using Also, the GitHub API doesn't allow to fetch more than 100 tags at a time. So setting it 2000 won't work. |
My tags are valid, the problem is that I also tag every push to the stage tag 67 was 2024-10-09 and there are at least a hundred or more commits between stage-67 and web-101. EDIT: updated from mobile made comment |
i have a repo with several dotnet projects in it.
the projects are in different folders, so I built pipelines to pack Nugets for each folder.
the pipelines with checkout the repo, find the next version, build it, pack it and push
I am trying to use your action to get the next version of the Nuget based on a prefixed tag.
the problem I am having is that there are other tags in the repo and my latest for one folder's Nuget is not within the top 10 latest tags.
I have tried using
fromTag
to go back to the first tag for the NuGet, but that didn't work, I also tried settingsmaxTagsToFetch
to 2000 (which is more than I have tags in that repo), but that didn't work eitherHow can I fix this issue?
The text was updated successfully, but these errors were encountered: