Skip to content

Commit 95f9fe2

Browse files
committed
Clone through HTTPS to avoid SSH setup in GitHub Actions
1 parent 30db76f commit 95f9fe2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
clone_path = Path(tmpdir, language)
2222
for branch in ('3.13', '3.12', '3.11', '3.10', '3.9'):
2323
try:
24-
Repo.clone_from(f'git@github.com:python/python-docs-{language}.git', clone_path, depth=1, branch=branch)
24+
Repo.clone_from(f'https://github.com/python/python-docs-{language}.git', clone_path, depth=1, branch=branch)
2525
except GitCommandError as e:
2626
print(f'failed to clone {language} {branch}')
2727
continue

0 commit comments

Comments
 (0)