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 ++++++++++++++++++++++++++++ themes/flamingo/layouts/_default/baseof.html | 4 ---- 2 files changed, 35 insertions(+), 4 deletions(-) create mode 100644 content/logs/2020-08-22-genpass.org 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. diff --git a/themes/flamingo/layouts/_default/baseof.html b/themes/flamingo/layouts/_default/baseof.html index 095a2e5..f228281 100644 --- a/themes/flamingo/layouts/_default/baseof.html +++ b/themes/flamingo/layouts/_default/baseof.html @@ -15,11 +15,7 @@ - {{ with .OutputFormats.Get "RSS" -}} - {{ printf `` .Rel .MediaType.Type .RelPermalink $.Site.Title | safeHTML }} - {{- end }} - {{ partial "meta" . }} -- cgit v1.2.3