summaryrefslogtreecommitdiff
path: root/deploy.py
diff options
context:
space:
mode:
authorjaseg <git@jaseg.de>2021-08-15 13:30:34 +0200
committerjaseg <git@jaseg.de>2021-08-15 13:30:34 +0200
commitf36babac0a9d553cdceff897af8b1b30e21a02f9 (patch)
treea26990341687844defb5b175f8f0fdd02448b8d1 /deploy.py
parentfe92b473b8087cb7ead693810ed7615814e7eaf9 (diff)
parent92932b3ed553ee79f3ddf8dfbbfea0e3d328c296 (diff)
downloadblog-f36babac0a9d553cdceff897af8b1b30e21a02f9.tar.gz
blog-f36babac0a9d553cdceff897af8b1b30e21a02f9.tar.bz2
blog-f36babac0a9d553cdceff897af8b1b30e21a02f9.zip
deploy.py auto-commit
Diffstat (limited to 'deploy.py')
-rw-r--r--deploy.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/deploy.py b/deploy.py
deleted file mode 100644
index 23edc18..0000000
--- a/deploy.py
+++ /dev/null
@@ -1,24 +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)
- 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)