Add link to git
continuous-integration/drone/push Build is passing Details

pull/3/head
Julius 2021-11-14 16:08:44 +01:00
parent 2e1a64ed55
commit b8de5e080b
Signed by: j00lz
GPG Key ID: AF241B0AA237BBA2
5 changed files with 13 additions and 1 deletions

View File

@ -12,6 +12,10 @@ trigger:
- pull_request
steps:
- name: commit hash magic
image: bitnami/git:2.33.0
commands:
- git show -s --format=%h > hash
- name: kaniko
image: plugins/kaniko
settings:

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
.vscode/
dist/
hash

View File

@ -9,6 +9,7 @@ RUN pip install pipenv && pipenv install --system
COPY app.py /app/app.py
COPY templates/ /app/templates
COPY data/ /app/data
COPY hash /app/hash
RUN python ./app.py

7
app.py
View File

@ -26,11 +26,16 @@ update = date.today()
tijden = render("tijden.md")
nieuws = render("nieuws.md")
def read_hash():
with open("hash") as f:
line = f.readline()
return {"long": line, "short": line[0:7]}
inject_now = {'now': date.today().year,
'tijden': tijden,
'nieuws': nieuws,
'update': update}
'update': update,
'hash': read_hash()}

View File

@ -54,6 +54,7 @@
<hr style="height: 2px;"/>
<p style="margin-top: 16px; height: 40px;">Laatste
update: {{ update }}<br/>
<a href="https://git.voidcorp.nl/j00lz/galerie-site/commit/{{hash.long}}">Build {{hash.short}}</a><br>
Webmaster: <a href="mailto:webmaster@galerievanslagmaat.nl?SUBJECT=Website Galerie van Slagmaat">Julius de
Jeu</a>