From cfe5fe6ecaaaac50f6f30135a3c212181316ad18 Mon Sep 17 00:00:00 2001 From: Jay Date: Mon, 2 Mar 2026 18:12:29 +0000 Subject: [PATCH] update workflow --- .gitea/workflows/deploy.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index ec92ebf..70529b8 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -17,8 +17,10 @@ jobs: # Step 2: Install Python + MkDocs Material - name: Setup Python and MkDocs run: | - python3 -m pip install --upgrade pip - pip install mkdocs-material + apt-get update + apt-get install -y python3-pip + pip3 install --upgrade pip + pip3 install mkdocs-material # Step 3: Build the static site - name: Build site with MkDocs