diff options
author | jaseg <git@jaseg.de> | 2021-08-15 13:59:15 +0200 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2021-08-15 13:59:15 +0200 |
commit | fc5a5cf688997d7eb4705ad5c152497d175134af (patch) | |
tree | 730f4e846e3249e73838bdbf06de559348242be1 /deploy.py | |
parent | d1e30b2fee7aeeb983875867568f68d89a23fa47 (diff) | |
parent | 039197437e842355d759e0c50ab600c393d26542 (diff) | |
download | blog-fc5a5cf688997d7eb4705ad5c152497d175134af.tar.gz blog-fc5a5cf688997d7eb4705ad5c152497d175134af.tar.bz2 blog-fc5a5cf688997d7eb4705ad5c152497d175134af.zip |
deploy.py auto-commit
Diffstat (limited to 'deploy.py')
-rw-r--r-- | deploy.py | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/deploy.py b/deploy.py deleted file mode 100644 index 053237a..0000000 --- a/deploy.py +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env python3 - -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: - subprocess.run(['hugo'], cwd=tmpdir, check=True) - subprocess.run(['git', 'add', '--force', 'public'], check=True) - write_tree = subprocess.run(['git', 'write-tree', '--prefix=public/'], 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], 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], check=True) - - finally: - subprocess.run(['git', 'worktree', 'remove', '-f', tmpdir], check=True) |