From 2c0142fb7fbd3d0f5fb8d76643bbe0840d273044 Mon Sep 17 00:00:00 2001 From: Zachary Hall Date: Sun, 20 Oct 2024 10:50:22 -0700 Subject: [PATCH] Hopefully fix python venv creation in workflow --- .forgejo/workflows/compile.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/compile.yaml b/.forgejo/workflows/compile.yaml index c0fc07e..5cf3198 100644 --- a/.forgejo/workflows/compile.yaml +++ b/.forgejo/workflows/compile.yaml @@ -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