summaryrefslogtreecommitdiff
path: root/deploy.py
diff options
context:
space:
mode:
authorjaseg <git@jaseg.de>2021-08-15 14:32:23 +0200
committerjaseg <git@jaseg.de>2021-08-15 14:32:23 +0200
commit6c1bf0bbf6189c6927514f58271dd63831909640 (patch)
treed3c6f5b6ea8c90b1e0d9751c411d83c7ce113513 /deploy.py
parent088e9c83e8683f9bfbf694771c128a3cc1d62c50 (diff)
parentfc5a5cf688997d7eb4705ad5c152497d175134af (diff)
downloadblog-6c1bf0bbf6189c6927514f58271dd63831909640.tar.gz
blog-6c1bf0bbf6189c6927514f58271dd63831909640.tar.bz2
blog-6c1bf0bbf6189c6927514f58271dd63831909640.zip
deploy.py auto-commit
Diffstat (limited to 'deploy.py')
-rw-r--r--deploy.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/deploy.py b/deploy.py
deleted file mode 100644
index a78649b..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'], 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)
-
- finally:
- subprocess.run(['git', 'worktree', 'remove', '-f', tmpdir], check=True)