You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In jenkins-infra/helpdesk#3084 (comment), we ran into an issue where Jenkins was not triggering builds for a given tag because the timestamp was not when the release was published but when the release-drafter tag was initially created.
which publishes the GH release created by release-drafter (through the GH api).
We were able to fix the issue on our custom made library by adding the -a flag when creating our tag in the Jenkins infra (ref. jenkins-infra/pipeline-library#360) , but it is a "pure git" solution.
Not sure how to solve this issue there, maybe updating the tag created by the published release to annotate it?
The text was updated successfully, but these errors were encountered:
In jenkins-infra/helpdesk#3084 (comment), we ran into an issue where Jenkins was not triggering builds for a given tag because the timestamp was not when the release was published but when the release-drafter tag was initially created.
This is caused by the fact the punlishing a GitHub release generates a ligthweight git tag as per https://github.com/orgs/community/discussions/4924 .
The tag is created by
jenkins-maven-cd-action/run.sh
Line 12 in 8c5d1f5
We were able to fix the issue on our custom made library by adding the
-a
flag when creating our tag in the Jenkins infra (ref. jenkins-infra/pipeline-library#360) , but it is a "pure git" solution.Not sure how to solve this issue there, maybe updating the tag created by the published release to annotate it?
The text was updated successfully, but these errors were encountered: