diff options
author | jaseg <git@jaseg.de> | 2023-12-27 13:42:28 +0100 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2023-12-27 13:42:28 +0100 |
commit | 8a673ca3322350bd7e1580a90f89d0bd0c5fa3bf (patch) | |
tree | eeec5676c576c03a94b5bc74f929f2962d056ee9 /deploy.py | |
parent | 2bb3b936b405f4f089d77655aed62903b6ae0a7f (diff) | |
parent | ab0eb2b834856c19a195c98435c4525fba08376a (diff) | |
download | blog-8a673ca3322350bd7e1580a90f89d0bd0c5fa3bf.tar.gz blog-8a673ca3322350bd7e1580a90f89d0bd0c5fa3bf.tar.bz2 blog-8a673ca3322350bd7e1580a90f89d0bd0c5fa3bf.zip |
deploy.py auto-commit
Diffstat (limited to 'deploy.py')
-rw-r--r-- | deploy.py | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/deploy.py b/deploy.py deleted file mode 100644 index c960fbc..0000000 --- a/deploy.py +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env python3 - -import os -import tempfile -import subprocess -from pathlib import Path - -if __name__ == '__main__': - with tempfile.TemporaryDirectory() as tmpdir: - - current_branch = subprocess.run(['git', 'symbolic-ref', '-q', 'HEAD'], check=False, capture_output=True).stdout.strip() - if current_branch == 'refs/heads/deploy': - raise SystemError('This script cannot be run from the deploy branch (run from main instead)') - - subprocess.run(['git', 'worktree', 'add', '--detach', tmpdir], check=True) - try: - env = dict(os.environ) - env['PATH'] = f'{Path("hack").absolute()}:{env["PATH"]}' - subprocess.run(['hugo'], cwd=tmpdir, check=True, env=env) - subprocess.run(['git', 'add', '--force', 'public'], cwd=tmpdir, check=True) - write_tree = subprocess.run(['git', 'write-tree', '--prefix=public/'], cwd=tmpdir, check=True, capture_output=True) - tree = write_tree.stdout.strip() - - 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@git.jaseg.de:blog.git', 'deploy'], cwd=tmpdir, check=True) - finally: - subprocess.run(['git', 'worktree', 'remove', '-f', tmpdir], check=True) |