skip to Main Content

Ubuntu – Why is the git HEAD tag not annotated in a workflow?

Why does GitHub not get the pushed tag as annotated? Locally if I run this command: git for-each-ref --format="%(if:equals=tag)%(objecttype)%(then)a %(else)%(if:equals=blob)%(objecttype)%(then)b %(else) %(end)%(end)%(align:20,right)%(refname:short)%09%(objectname:short)%(end)%09%(if:equals=tag)%(objecttype)%(then)@%(object) %(contents:subject)%(else)%(end)" --sort=taggerdate refs/tags | tail -n2 I get: a v0.11.0 a385a1c @2c3ef8cdb5068e47f818af0c2bb81c5a6a2b2056 0.11.0 a v0.11.1 55210a6 @9b389a86652517a49c025c40a2cd7bd614d3ace4 0.11.1…

VIEW QUESTION
Back To Top
Search