Fetch tags

This commit is contained in:
Zach Borboa
2022-09-23 13:58:45 -07:00
parent ba74b5534c
commit b70f00da6f
+1 -1
View File
@@ -34,7 +34,7 @@ def main():
# Fetch tags since `git fetch' is run with --no-tags during actions/checkout.
# git fetch --tags
for remote in local_repo.remotes:
remote.fetch()
remote.fetch('--tags')
print('after:')
print(local_repo.git.tag('--list'))