1
0
Fork 0
mirror of synced 2024-05-03 03:53:32 +12:00

fix apt install without update in deb build

This commit is contained in:
Nick Sweeting 2021-01-12 12:51:18 +02:00
parent 40ce95a9e4
commit b5ce5b35a8
2 changed files with 3 additions and 3 deletions

View file

@ -19,7 +19,8 @@ jobs:
- name: Install packaging dependencies
run: |
sudo apt install -y \
sudo apt-get update -qq
sudo apt-get install -y \
python3 python3-dev python3-pip python3-venv python3-all \
dh-python debhelper devscripts dput software-properties-common \
python3-distutils python3-setuptools python3-wheel python3-stdeb
@ -36,7 +37,7 @@ jobs:
- name: Install archivebox from deb
run: |
cd deb_dist/
sudo apt install ./archivebox*.deb
sudo apt-get install ./archivebox*.deb
- name: Check ArchiveBox version
run: |

View file

@ -20,7 +20,6 @@ fi
cd "$REPO_DIR"
echo "[*] Fetching latest docs version"
cd "$REPO_DIR/docs"
git pull