Skip to content

Commit

Permalink
hotfix: extract-release-changelog.py script not working
Browse files Browse the repository at this point in the history
  • Loading branch information
kyujin-cho committed Feb 14, 2024
1 parent 219207d commit 46fa039
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/extract-release-changelog.py
Expand Up @@ -16,7 +16,7 @@ def get_tag():

def get_prev_tag():
tag = get_tag()
subprocess.run(['git', 'clone', '--filter=blob:none', '--no-checkout', f'git://github.com/{os.environ["GITHUB_REPOSITORY"]}.git', '.git-tmp'])
subprocess.run(['git', 'clone', '--filter=blob:none', '--no-checkout', f'https://github.com/{os.environ["GITHUB_REPOSITORY"]}.git', '.git-tmp'])
p = subprocess.run(['git', 'describe', '--abbrev=0', '--tags', tag + '^'], capture_output=True, cwd='.git-tmp')
prev_tag = p.stdout.decode().strip()
return prev_tag
Expand Down

0 comments on commit 46fa039

Please sign in to comment.