Update .gitea/workflows/action.yaml
Build and Publish / build (push) Successful in 50s
Build and Publish / Build and Deploy Docs (push) Failing after 4s

This commit is contained in:
2026-03-31 14:44:54 +02:00
parent b559a840f9
commit 9758fca262
+6 -4
View File
@@ -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