From 9758fca262dfbe02a5c7ec26846fdf8a27c337b4 Mon Sep 17 00:00:00 2001 From: appleb_m Date: Tue, 31 Mar 2026 14:44:54 +0200 Subject: [PATCH] Update .gitea/workflows/action.yaml --- .gitea/workflows/action.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/action.yaml b/.gitea/workflows/action.yaml index 27ec0d4e..35cf7e03 100644 --- a/.gitea/workflows/action.yaml +++ b/.gitea/workflows/action.yaml @@ -27,22 +27,24 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 - + - name: Cache pip uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }} - - - name: Set Up Python Environment + + - name: Set Up Python uses: actions/setup-python@v4 with: python-version: '3.12' + + - name: Set Up Python Environment run: | python3 -m venv venv # Create a virtual environment source venv/bin/activate pip install twine build - + - name: Build the package run: | source venv/bin/activate