mirror of https://github.com/status-im/reagent.git
Add support for pushing to reagent-project's doc site
This commit is contained in:
parent
f905c8be9d
commit
40f3392b95
6
Makefile
6
Makefile
|
@ -59,6 +59,12 @@ trigger-build:
|
||||||
push-gh-pages: build-gh-pages
|
push-gh-pages: build-gh-pages
|
||||||
git push origin gh-pages:gh-pages
|
git push origin gh-pages:gh-pages
|
||||||
|
|
||||||
|
# build site and push to reagent-project's doc site
|
||||||
|
push-project-docs: build-gh-pages
|
||||||
|
git push --force \
|
||||||
|
https://github.com/reagent-project/reagent-project.github.io.git \
|
||||||
|
gh-pages:master
|
||||||
|
|
||||||
# build site into a gh-pages branch
|
# build site into a gh-pages branch
|
||||||
build-gh-pages: gen-site gh-pages-add
|
build-gh-pages: gen-site gh-pages-add
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
(defproject reagent "0.5.0-alpha"
|
(defproject reagent "0.5.0-SNAPSHOT"
|
||||||
:url "http://github.com/reagent-project/reagent"
|
:url "http://github.com/reagent-project/reagent"
|
||||||
:license {:name "MIT"}
|
:license {:name "MIT"}
|
||||||
:description "A simple ClojureScript interface to React"
|
:description "A simple ClojureScript interface to React"
|
||||||
|
|
Loading…
Reference in New Issue