add html to releases
This commit is contained in:
parent
3991b4868d
commit
0c0d5afacd
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue