add html to releases

This commit is contained in:
Michiel Borkent 2021-05-30 19:41:06 +02:00
parent 3991b4868d
commit 0c0d5afacd

View file

@ -18,6 +18,12 @@
(fs/copy "resources/public/disable_auto_eval.html" "gh-pages"
{:replace-existing true})
(def html-source-dir (fs/file "resources" "public" "html"))
(def html-target-dir (fs/file "gh-pages" "html"))
(fs/create-dirs html-target-dir)
(doseq [html ["export.html" "reagent.html"]]
(fs/copy (fs/file html-source-dir html) html-target-dir))
(def style-source-dir (fs/file "resources" "public" "css"))
(def style-target-dir (fs/file "gh-pages" "css"))
(fs/create-dirs style-target-dir)