From b27ace9cb04a3d38461c546a74e4c5bd041d10a5 Mon Sep 17 00:00:00 2001 From: Kumi Date: Mon, 1 Jul 2024 10:47:28 +0200 Subject: [PATCH] feat(build): add dev flag to static site generation Updated the build-dev CI workflow to run the static site generation with a development flag. This ensures the build script runs in the appropriate context for development environments. No issues referenced. --- .forgejo/workflows/build-dev.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/build-dev.yml b/.forgejo/workflows/build-dev.yml index 5d7ee68..19f4db5 100644 --- a/.forgejo/workflows/build-dev.yml +++ b/.forgejo/workflows/build-dev.yml @@ -20,7 +20,7 @@ jobs: python3 -m pip install -r requirements.txt --break-system-packages - name: Generate static site - run: python3 main.py + run: python3 main.py --dev - name: Deploy to pages branch run: |