Setup Python in GitHub Actions

This commit is contained in:
sw3205933776 2025-08-20 11:01:17 +08:00
parent 30a19f72b0
commit c8a7184c3a

View file

@ -35,9 +35,19 @@ jobs:
with:
node-version: 20
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install Dependencies
run: npm install
- name: Install Python Dependencies
run: |
python -m pip install --upgrade pip
pip install uvicorn Babel
- name: Build Release Files
run: npm run build
env: