From 8f7f0208634b69fe03d7180aed4452a3b69dc4ac Mon Sep 17 00:00:00 2001 From: Zachary Hall Date: Sat, 19 Oct 2024 17:17:20 -0700 Subject: [PATCH] Fix incorrect python package in workflow --- .gitea/workflows/compile.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/compile.yaml b/.gitea/workflows/compile.yaml index bed4c85..c42857e 100644 --- a/.gitea/workflows/compile.yaml +++ b/.gitea/workflows/compile.yaml @@ -15,7 +15,7 @@ jobs: - name: Install system dependencies run: apt update && apt install -y wget python3 python3-pip - name: Install Python dependencies via pip - run: python -m venv venv && ./venv/bin/pip install lddwrap + run: python -m venv venv && ./venv/bin/pip install pylddwrap - name: Build project run: ./build-appimage.sh - name: Upload artifact