mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-22 23:37:53 +00:00
build: next take on version number
This commit is contained in:
parent
e7d318aca5
commit
d87e2107fa
3 changed files with 51 additions and 41 deletions
50
.githooks/post-commit.py
Normal file
50
.githooks/post-commit.py
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
# This script appends the current commit hash to the version information in
|
||||||
|
# `layouts/partials/version.txt`
|
||||||
|
#
|
||||||
|
# Call this script from your ".git/hooks/post-commit" file like this (supporting
|
||||||
|
# Linux, Windows and MacOS)
|
||||||
|
|
||||||
|
# #!/bin/sh
|
||||||
|
# echo 'execute .githooks/post-commit.py' >> .githooks/hooks.log
|
||||||
|
# python3 .githooks/post-commit.py
|
||||||
|
|
||||||
|
from datetime import datetime
|
||||||
|
import re
|
||||||
|
import subprocess
|
||||||
|
|
||||||
|
def main():
|
||||||
|
time = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
|
||||||
|
file_path = 'layouts/partials/version.txt'
|
||||||
|
with open(file_path, 'r+') as f:
|
||||||
|
version = f.read().strip()
|
||||||
|
new_version = ''
|
||||||
|
match = re.match(r'(\d+\.\d+\.\d+)(?:\+([^+]+))?', version)
|
||||||
|
if match:
|
||||||
|
semver = match.group(1)
|
||||||
|
old_hash = match.group(2)
|
||||||
|
new_hash = subprocess.check_output(['git', 'rev-parse', 'HEAD~1']).decode('utf-8').strip()
|
||||||
|
print(f'{time}: post-commit - old hash {old_hash} - new hash {new_hash}', file=open(".githooks/hooks.log", "a"))
|
||||||
|
print(f'post-commit - old hash {old_hash} - new hash {new_hash}')
|
||||||
|
if old_hash != new_hash:
|
||||||
|
new_version = f'{semver}+{new_hash}'
|
||||||
|
f.seek(0)
|
||||||
|
f.write(new_version)
|
||||||
|
f.truncate()
|
||||||
|
f.close()
|
||||||
|
subprocess.check_call(['git', 'add', file_path])
|
||||||
|
subprocess.check_call(['git', 'commit', '--amend', '--no-edit'])
|
||||||
|
else:
|
||||||
|
print(f'{time}: post-commit - No change in hash, file {file_path} not updated', file=open(".githooks/hooks.log", "a"))
|
||||||
|
print(f'post-commit - No change in hash, file {file_path} not updated')
|
||||||
|
exit(0)
|
||||||
|
else:
|
||||||
|
print(f'{time}: post-commit - Invalid version format in {file_path}', file=open(".githooks/hooks.log", "a"))
|
||||||
|
print(f'post-commit - Invalid version format in {file_path}')
|
||||||
|
exit(1)
|
||||||
|
print(f'{time}: post-commit - New version {new_version} was written to {file_path}', file=open(".githooks/hooks.log", "a"))
|
||||||
|
exit(0)
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
|
@ -1,40 +0,0 @@
|
||||||
#!/usr/bin/env python3
|
|
||||||
|
|
||||||
# This script appends the current commit hash to the version information in
|
|
||||||
# `layouts/partials/version.txt`
|
|
||||||
#
|
|
||||||
# Call this script from your ".git/hooks/pre-commit" file like this (supporting
|
|
||||||
# Linux, Windows and MacOS)
|
|
||||||
|
|
||||||
# #!/bin/sh
|
|
||||||
# echo 'execute .githooks/pre-commit.py' >> .githooks/hooks.log
|
|
||||||
# python3 .githooks/pre-commit.py
|
|
||||||
|
|
||||||
from datetime import datetime
|
|
||||||
import re
|
|
||||||
import subprocess
|
|
||||||
|
|
||||||
def main():
|
|
||||||
time = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
|
|
||||||
file_path = 'layouts/partials/version.txt'
|
|
||||||
with open(file_path, 'r+') as f:
|
|
||||||
version = f.read().strip()
|
|
||||||
new_version = ''
|
|
||||||
match = re.match(r'(\d+\.\d+\.\d+)(\+[^+]+)?', version)
|
|
||||||
if match:
|
|
||||||
semver = match.group(1)
|
|
||||||
commit_hash = subprocess.check_output(['git', 'rev-parse', 'HEAD~1']).decode('utf-8').strip()
|
|
||||||
new_version = f'{semver}+{commit_hash}'
|
|
||||||
f.seek(0)
|
|
||||||
f.write(new_version)
|
|
||||||
f.truncate()
|
|
||||||
subprocess.check_call(['git', 'add', file_path])
|
|
||||||
else:
|
|
||||||
print(f'{time}: PRE-COMMIT - Invalid version format in {file_path}', file=open(".githooks/hooks.log", "a"))
|
|
||||||
print(f'PRE-COMMIT - Invalid version format in {file_path}')
|
|
||||||
exit(1)
|
|
||||||
print(f'{time}: PRE-COMMIT - New version {new_version} was written to {file_path}', file=open(".githooks/hooks.log", "a"))
|
|
||||||
exit(0)
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
main()
|
|
|
@ -1 +1 @@
|
||||||
6.4.0+0294364d6fb83fb48f259fa0235ff177d305d98a
|
6.4.0+3166e40fd4702b1d134b484ac40ef5b572343876
|
Loading…
Reference in a new issue