diff --git a/.drone/github-mirror.sh b/.drone/github-mirror.sh index 6c59b19a05..20832d4b51 100755 --- a/.drone/github-mirror.sh +++ b/.drone/github-mirror.sh @@ -6,9 +6,9 @@ ssh-keyscan github.com >> ~/.ssh/known_hosts 2>/dev/null # Clone the repository -git remote add github git@github.com:/BlackLight/platypush.git +git remote add github git@github.com:/blacklight/platypush.git git pull --rebase github "$(git branch | head -1 | awk '{print $2}')" || echo "No such branch on Github" # Push the changes to the GitHub mirror git push --all -v github -git push --tags +git push --tags -v github diff --git a/platypush/builder/_base.py b/platypush/builder/_base.py index 5bc139f479..17c82ffc64 100644 --- a/platypush/builder/_base.py +++ b/platypush/builder/_base.py @@ -29,7 +29,7 @@ class BaseBuilder(ABC): and :module:`platypush.platydock` modules/scripts. """ - REPO_URL: str = 'https://github.com/BlackLight/platypush.git' + REPO_URL: str = 'https://github.com/blacklight/platypush.git' """ We use the Github URL here rather than the self-hosted Gitea URL to prevent too many requests to the Gitea server.