From 6ffbc2192186df68d14638a0b706ad7d956e8a5b Mon Sep 17 00:00:00 2001 From: Chris McCormick Date: Fri, 15 Nov 2024 11:20:56 +0000 Subject: [PATCH 1/2] Fix #55: create gh-pages dir before copying. --- script/release.clj | 2 ++ 1 file changed, 2 insertions(+) diff --git a/script/release.clj b/script/release.clj index 5293fa9..3a1591b 100755 --- a/script/release.clj +++ b/script/release.clj @@ -3,6 +3,8 @@ (require '[babashka.fs :as fs] '[babashka.tasks :refer [shell]]) +(fs/create-dirs "gh-pages") + (fs/copy "resources/public/index.html" "gh-pages" {:replace-existing true}) From ca41b297cb8532278ace6da5b12b87074cdae095 Mon Sep 17 00:00:00 2001 From: Chris McCormick Date: Fri, 15 Nov 2024 11:22:22 +0000 Subject: [PATCH 2/2] Update changelog. --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f50c87..58a76c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ +- [#55](https://github.com/babashka/babashka/issues/55): create gh-pages dir before using. - [#89](https://github.com/babashka/babashka/issues/89): allow `evaluate_script_tags` to specify individual scripts. - [#87](https://github.com/babashka/scittle/issues/87): prod build on fresh checkout fails