From c648e5c17a42a8bcafbe7b4e24aadb66c513965e Mon Sep 17 00:00:00 2001 From: Noah Jacobson Date: Fri, 9 Aug 2024 14:09:44 -0400 Subject: [PATCH] fix: html build overwriting past commit --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 95440da..8f297aa 100644 --- a/Makefile +++ b/Makefile @@ -65,7 +65,7 @@ push_markdown: push_html: $(eval COMMIT_HASH=$(shell git rev-parse --short HEAD)) git config user.name awesome-nicc-bot && git config user.email github-actions@github.com - git add -f html && (git diff-index --quiet HEAD || git commit --amend -m "[bot] build HTML from data $(COMMIT_HASH)") + git add -f html && (git diff-index --quiet HEAD || git commit -m "[bot] build HTML from data $(COMMIT_HASH)") git push .PHONY: url_check # check URLs for dead links or other connection problems