From 12e8802cd9829580275027533ce898e484d003d1 Mon Sep 17 00:00:00 2001 From: gabrielgio Date: Sat, 22 Aug 2020 16:46:19 +0200 Subject: feat: Add log for gitlab pages Just a small explanation how to publish lein cljs into Gitlab pages. --- content/logs/2020-08-22-genpass.org | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 content/logs/2020-08-22-genpass.org (limited to 'content') diff --git a/content/logs/2020-08-22-genpass.org b/content/logs/2020-08-22-genpass.org new file mode 100644 index 0000000..595295f --- /dev/null +++ b/content/logs/2020-08-22-genpass.org @@ -0,0 +1,35 @@ +--- +title: "Moveing from github to gitlab pages" +date: 2020-09-22 +tags: ['gitlab'] +--- + +This was quite simple, I had just to create a simple Gitlab pipeline job and +publish to pages this is done by: + +#+BEGIN_SRC +image: clojure:lein-2.7.0 + +before_script: + - lein deps + +test: + script: + - lein test + +pages: + stage: deploy + script: + - lein package + artifacts: + paths: + - public + only: + - master + +#+END_SRC + +- before_script :: will download all the dependencies with ~lein deps~. +- test :: is self explanatory. +- pages :: will compile the cljs into js with ~lein package~ and publish it into + pages. -- cgit v1.2.3