From 72d37bc09368472d31b6dd79c82dbddcf87dbbae Mon Sep 17 00:00:00 2001 From: Elijah Date: Thu, 25 Jan 2024 11:48:50 +0100 Subject: [PATCH] Installed software-properties-common to be able to use add-apt-repository --- .gitea/workflows/ci-pipeline.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitea/workflows/ci-pipeline.yaml b/.gitea/workflows/ci-pipeline.yaml index 9f3ed16..e2ba5fc 100644 --- a/.gitea/workflows/ci-pipeline.yaml +++ b/.gitea/workflows/ci-pipeline.yaml @@ -20,12 +20,19 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Install pre-requisite packages + id: prereq + run: | + apt-get install software-properties-common + apt-get update + - name: Install python3-venv id: install run: | add-apt-repository ppa:deadsnakes/ppa apt-get update apt-get install python3.11 python3.11-venv python3.11-pip -y + if: steps.prereq.outcome == 'success' - name: Check Python version run: |