Hopefully fix python venv creation in workflow
Some checks failed
Build / build-gentoo (push) Successful in 1m7s
Build / build-appimage (push) Successful in 6m11s
Build / build-android (push) Failing after 4s

This commit is contained in:
Zachary Hall 2024-10-20 10:50:22 -07:00
parent 0a5bc4e779
commit 2c0142fb7f

View file

@ -13,9 +13,9 @@ jobs:
ref: main
fetch-depth: 0
- name: Install system dependencies
run: apt update && apt install -y wget python3 python3-pip
run: apt update && apt install -y wget python3 python3-pip python3-venv
- name: Install Python dependencies via pip
run: python -m venv venv && ./venv/bin/pip install pylddwrap
run: python3 -m venv venv && ./venv/bin/pip install pylddwrap
- name: Build project
run: ./build-appimage.sh
- name: Upload artifact