From 43183c3d09249f0d905fb4ac0d17c4abebf72bd5 Mon Sep 17 00:00:00 2001 From: Jared Kling Date: Mon, 8 Dec 2025 22:27:12 -0600 Subject: [PATCH] install from pip instead --- .gitea/workflows/sample.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/sample.yaml b/.gitea/workflows/sample.yaml index c537381..138a9d3 100644 --- a/.gitea/workflows/sample.yaml +++ b/.gitea/workflows/sample.yaml @@ -22,7 +22,9 @@ jobs: steps: - name: Install weasyprint run: | - sudo apt update && sudo apt install weasyprint -y + sudo apt-get update + sudo DEBIAN_FRONTEND=noninteractive apt-get install -y python3-pip libpango-1.0-0 libpangoft2-1.0-0 + pip3 install weasyprint - name: Convert to pdf run: | weasyprint generated_resume.html resume.pdf