diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-06-11 00:18:54 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-06-11 00:18:54 +0200 |
commit | 96c2cbe1850f95806cccb6f47a7739eb9c2ac860 (patch) | |
tree | e3813fc2d7e9c408a66a8e92cfe912a9c1569c23 /2020-08-22Moving_from_Github_to_Gitlab_pages.md | |
parent | 4fb323f69c11557a51c7da0b2031029f63edf789 (diff) | |
download | macroblog.rs-96c2cbe1850f95806cccb6f47a7739eb9c2ac860.tar.gz macroblog.rs-96c2cbe1850f95806cccb6f47a7739eb9c2ac860.tar.bz2 macroblog.rs-96c2cbe1850f95806cccb6f47a7739eb9c2ac860.zip |
fix: Fix blog post timestamps
For some the timestamp got messed up. Now they should be restored
properly as well the `locustfile.py` pointing to the right endpoints.
Diffstat (limited to '2020-08-22Moving_from_Github_to_Gitlab_pages.md')
-rw-r--r-- | 2020-08-22Moving_from_Github_to_Gitlab_pages.md | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/2020-08-22Moving_from_Github_to_Gitlab_pages.md b/2020-08-22Moving_from_Github_to_Gitlab_pages.md deleted file mode 100644 index 5bfa788..0000000 --- a/2020-08-22Moving_from_Github_to_Gitlab_pages.md +++ /dev/null @@ -1,31 +0,0 @@ -This was quite simple, I had just to create a simple Gitlab pipeline job -and publish to pages this is done by: - - 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. |