use docker action for setting up python
This commit is contained in:
parent
5ca0212a12
commit
7dfbff9e80
1 changed files with 8 additions and 2 deletions
10
.github/workflows/debian.yml
vendored
10
.github/workflows/debian.yml
vendored
|
@ -15,10 +15,16 @@ jobs:
|
||||||
submodules: true
|
submodules: true
|
||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
|
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v1
|
||||||
|
with:
|
||||||
|
python-version: 3.9
|
||||||
|
architecture: x64
|
||||||
|
|
||||||
- name: Build Debian/Apt package
|
- name: Build Debian/Apt package
|
||||||
run: |
|
run: |
|
||||||
sudo apt install -y debhelper dh-python python3-all
|
sudo apt install -y debhelper dh-python
|
||||||
pip install --upgrade pip setuptools wheel stdeb
|
pip3 install --upgrade pip setuptools wheel stdeb
|
||||||
./bin/build_deb.sh
|
./bin/build_deb.sh
|
||||||
|
|
||||||
- name: Install archivebox from deb
|
- name: Install archivebox from deb
|
||||||
|
|
Loading…
Reference in a new issue