Skip to content

Instantly share code, notes, and snippets.

@jonnyyu
Last active August 23, 2022 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonnyyu/1458d4ec0d58517e47a58ff92d692752 to your computer and use it in GitHub Desktop.
Save jonnyyu/1458d4ec0d58517e47a58ff92d692752 to your computer and use it in GitHub Desktop.
get git tag version
import subprocess
def get_tag():
return subprocess.check_output(['git', 'describe', '--always'], cwd='json', encoding='utf-8').strip()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment