From 412882f32b1ceccc863c34465e8b0ded469a3e02 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Tue, 16 Apr 2024 10:49:47 -0400 Subject: [PATCH] Encode the commit hash into the webpage --- .github/workflows/deploy.yml | 6 ++++++ templates/base.html | 4 +++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f081c83..966d405 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -17,6 +17,9 @@ jobs: - name: Checkout master 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 uses: shalzz/zola-deploy-action@v0.18.0 env: @@ -46,6 +49,9 @@ jobs: - name: Checkout master 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 uses: shalzz/zola-deploy-action@v0.18.0 env: diff --git a/templates/base.html b/templates/base.html index 155d668..16de5d6 100644 --- a/templates/base.html +++ b/templates/base.html @@ -161,7 +161,9 @@