summaryrefslogtreecommitdiff
path: root/deploy.py
diff options
context:
space:
mode:
authorjaseg <git@jaseg.de>2021-11-24 12:31:49 +0100
committerjaseg <git@jaseg.de>2021-11-24 12:31:49 +0100
commit396c62e422e0d0e98b58d4c76e5a377cdbd52bee (patch)
treef10627e097eb2b71d9ee1b4a1538f105bb76bd93 /deploy.py
parenta6ecebf64878f254c7d40bfe0fdc00ac4dbf63e2 (diff)
downloadblog-396c62e422e0d0e98b58d4c76e5a377cdbd52bee.tar.gz
blog-396c62e422e0d0e98b58d4c76e5a377cdbd52bee.tar.bz2
blog-396c62e422e0d0e98b58d4c76e5a377cdbd52bee.zip
Polish wifi LED driver post
Diffstat (limited to 'deploy.py')
-rw-r--r--deploy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/deploy.py b/deploy.py
index 96f2b33..b0e87ca 100644
--- a/deploy.py
+++ b/deploy.py
@@ -21,6 +21,6 @@ if __name__ == '__main__':
commit = subprocess.run(['git', 'commit-tree', '-p', 'HEAD', '-p', 'refs/heads/deploy', '-m', 'deploy.py auto-commit', tree], cwd=tmpdir, check=True, capture_output=True).stdout.strip()
subprocess.run(['git', 'update-ref', '-m', f'deploy.sh update deploy branch to {commit}', 'refs/heads/deploy', commit], cwd=tmpdir, check=True)
- subprocess.run(['git', 'push', 'git.jaseg.de:blog.git', 'deploy'], cwd=tmpdir, check=True)
+ subprocess.run(['git', 'push', 'git@git.jaseg.de:blog.git', 'deploy'], cwd=tmpdir, check=True)
finally:
subprocess.run(['git', 'worktree', 'remove', '-f', tmpdir], check=True)