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
build-aux/release complain when executed in the pipelines:
'subprocess.CalledProcessError: Command '('git', 'describe', '--tags', '--match', 'v[0-9]*')' returned non-zero exit status 128.'
In order to avoid this fail we need to create tag like vx.y.z in the CIs.
It could either be manually assigned, as v.0.0.0 or v1.2.3, or taken from the repository tags with a limited depth, so that we print the real tag in the CI job.
The text was updated successfully, but these errors were encountered:
build-aux/release
complain when executed in the pipelines:'subprocess.CalledProcessError: Command '('git', 'describe', '--tags', '--match', 'v[0-9]*')' returned non-zero exit status 128.'
In order to avoid this fail we need to create tag like
vx.y.z
in the CIs.It could either be manually assigned, as
v.0.0.0
orv1.2.3
, or taken from the repository tags with a limited depth, so that we print the real tag in the CI job.The text was updated successfully, but these errors were encountered: