Hopefully fix python venv creation in workflow
This commit is contained in:
parent
0a5bc4e779
commit
2c0142fb7f
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue