diff --git a/scripts/extract-release-changelog.py b/scripts/extract-release-changelog.py index 2767df1184..7f01d4f103 100644 --- a/scripts/extract-release-changelog.py +++ b/scripts/extract-release-changelog.py @@ -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