diff options
author | jaseg <git@jaseg.de> | 2021-08-16 14:27:08 +0200 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2021-08-16 14:27:08 +0200 |
commit | f61c032d2361e8a507a3e267ef81777fe6fa0fc8 (patch) | |
tree | b5cfdb27288e46885565af7a75986a907214fb4a | |
parent | 345867359e9c88bf9912a76a0e2f77ea02532420 (diff) | |
download | blog-f61c032d2361e8a507a3e267ef81777fe6fa0fc8.tar.gz blog-f61c032d2361e8a507a3e267ef81777fe6fa0fc8.tar.bz2 blog-f61c032d2361e8a507a3e267ef81777fe6fa0fc8.zip |
deploy.py: auto-push generated commit
-rw-r--r-- | deploy.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -21,5 +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', 'origin', 'deploy'], cwd=tmpdir, check=True) finally: subprocess.run(['git', 'worktree', 'remove', '-f', tmpdir], check=True) |