From 4f83a97f17ad86ab6dfdb360d46ea786e848df0d Mon Sep 17 00:00:00 2001 From: Kumi Date: Mon, 1 Jul 2024 10:51:01 +0200 Subject: [PATCH] feat(build-dev): add --dev flag to generate static site Added the --dev flag to the static site generation command in the build-dev workflow to ensure the development environment configurations are used during the build process. This change aims to align the build process with development-specific settings, enhancing consistency and correctness in the environment used for development builds. --- .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 0daec0a..717d098 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: |