From a11cb45613a8ab6fdb87ed471d3dc34153139701 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Fri, 10 Apr 2026 15:23:52 +0100 Subject: [PATCH 1/2] Create .gitignore --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..effb945 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# Auto-generated in CI, can be copied here for local testing. +theme/static/css/pygment.css From 1010b85fca32f15e8cfe07a0f376a7bdf54ba8c4 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Fri, 10 Apr 2026 15:25:16 +0100 Subject: [PATCH 2/2] Update ci-cd.yml --- .github/workflows/ci-cd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 462b6c1..30b6bc8 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -25,10 +25,10 @@ jobs: uses: py-actions/py-dependency-install@v4 with: path: requirements.txt + - name: Build Pygments CSS + run: pygmentize -S default -f html > theme/static/css/pygment.css - name: Build site run: pelican -s publishconf.py - - name: Build Pygments CSS - run: pygmentize -S default -f html > output/theme/css/pygment.css - name: Run tests run: python test.py - name: Setup Pages