From a3eacf5e32f6ed05d94f093102df0d60ac91ce58 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Tue, 1 Nov 2022 10:00:59 -0500 Subject: [PATCH] updating some scripts and ci stuff --- .gitlab-ci.yml | 3 ++- assets/css/compiled/main.css | 4 ---- shell.nix | 2 +- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b045e04..5cf3421 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,8 +6,9 @@ variables: pages: script: - - apk add --update --no-cache git go + - apk add --update --no-cache git go nodejs npm - git submodule update --init --recursive + - cd themes/blowfish && npm install && cd ../../ - hugo mod get -u && hugo artifacts: paths: diff --git a/assets/css/compiled/main.css b/assets/css/compiled/main.css index 802817d..d4d2fa3 100644 --- a/assets/css/compiled/main.css +++ b/assets/css/compiled/main.css @@ -1619,10 +1619,6 @@ select { display: flex; } -.table { - display: table; -} - .hidden { display: none; } diff --git a/shell.nix b/shell.nix index 7db09e1..28cc2b2 100644 --- a/shell.nix +++ b/shell.nix @@ -13,6 +13,6 @@ mkShell rec { ]; shellHook = '' - hss='hugo server --noHTTPCache' + alias hss='hugo server --noHTTPCache' ''; }