1

Encode the commit hash into the webpage

This commit is contained in:
Evan Pratten 2024-04-16 10:49:47 -04:00
parent 86156fb64d
commit 412882f32b
2 changed files with 9 additions and 1 deletions

View File

@ -17,6 +17,9 @@ jobs:
- name: Checkout master - name: Checkout master
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Write the commit hash into the config
run: echo "commit = \"$(git rev-parse HEAD | cut -c1-7)\"" >> config.toml
- name: Build only - name: Build only
uses: shalzz/zola-deploy-action@v0.18.0 uses: shalzz/zola-deploy-action@v0.18.0
env: env:
@ -46,6 +49,9 @@ jobs:
- name: Checkout master - name: Checkout master
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Write the commit hash into the config
run: echo "commit = \"$(git rev-parse HEAD | cut -c1-7)\"" >> config.toml
- name: Build only - name: Build only
uses: shalzz/zola-deploy-action@v0.18.0 uses: shalzz/zola-deploy-action@v0.18.0
env: env:

View File

@ -161,7 +161,9 @@
<hr> <hr>
<p id="copyright"> <p id="copyright">
Copyright &copy; 2017 - {{ now() | date(format="%Y") }} Copyright &copy; 2017 - {{ now() | date(format="%Y") }}
<strong>Evan Warren Pratten</strong> <strong {% if config.extra.commit %} title="Commit: {{config.extra.commit}}" {% endif %}>
Evan Warren Pratten
</strong>
</p> </p>
</footer> </footer>