From 93ad4d03b9d87d6177514de27bb94d9230da82e6 Mon Sep 17 00:00:00 2001 From: Gabriel Arakaki Giovanini Date: Tue, 21 Jun 2022 21:39:04 +0200 Subject: ref: Move from orgmode to markdown I'll never ever again move away from markdown. fix: Move to http ... until I add a certificate --- content/posts/2020-08-22-genpass.md | 39 +++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 content/posts/2020-08-22-genpass.md (limited to 'content/posts/2020-08-22-genpass.md') diff --git a/content/posts/2020-08-22-genpass.md b/content/posts/2020-08-22-genpass.md new file mode 100644 index 0000000..3991a86 --- /dev/null +++ b/content/posts/2020-08-22-genpass.md @@ -0,0 +1,39 @@ +--- +title: "Moving from Github to Gitlab pages" +date: 2020-08-22 +tags: ['gitlab'] +--- + +This was quite fast, I had just to create a small Gitlab pipeline job and +publish to pages this is done by: + +```yml +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 +``` + +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