diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-06-21 21:39:04 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-06-21 21:43:28 +0200 |
commit | 93ad4d03b9d87d6177514de27bb94d9230da82e6 (patch) | |
tree | 89da96ae3a43b34ec0db13f57a657c099e24a15d /content/logs/2020-08-22-genpass.org | |
parent | acf5f44cba664debef95e1275dd26c5679e6e357 (diff) | |
download | gabrielgio.me-93ad4d03b9d87d6177514de27bb94d9230da82e6.tar.gz gabrielgio.me-93ad4d03b9d87d6177514de27bb94d9230da82e6.tar.bz2 gabrielgio.me-93ad4d03b9d87d6177514de27bb94d9230da82e6.zip |
ref: Move from orgmode to markdown
I'll never ever again move away from markdown.
fix: Move to http
... until I add a certificate
Diffstat (limited to 'content/logs/2020-08-22-genpass.org')
-rw-r--r-- | content/logs/2020-08-22-genpass.org | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/content/logs/2020-08-22-genpass.org b/content/logs/2020-08-22-genpass.org deleted file mode 100644 index c9a0a98..0000000 --- a/content/logs/2020-08-22-genpass.org +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: "Moving from Github to Gitlab pages" -date: 2020-08-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. |