From 7dfbff9e8034d290ecfb4d0f04822de37d298304 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sat, 28 Nov 2020 05:59:53 -0500 Subject: [PATCH] use docker action for setting up python --- .github/workflows/debian.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml index 45d17e50..6167306c 100644 --- a/.github/workflows/debian.yml +++ b/.github/workflows/debian.yml @@ -15,10 +15,16 @@ jobs: submodules: true fetch-depth: 1 + - name: Set up Python + uses: actions/setup-python@v1 + with: + python-version: 3.9 + architecture: x64 + - name: Build Debian/Apt package run: | - sudo apt install -y debhelper dh-python python3-all - pip install --upgrade pip setuptools wheel stdeb + sudo apt install -y debhelper dh-python + pip3 install --upgrade pip setuptools wheel stdeb ./bin/build_deb.sh - name: Install archivebox from deb