From b5ce5b35a85aa1fa6c03869811c8dbef383f7f12 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Tue, 12 Jan 2021 12:51:18 +0200 Subject: [PATCH] fix apt install without update in deb build --- .github/workflows/debian.yml | 5 +++-- bin/build_docs.sh | 1 - 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml index 82a635d0..6492f020 100644 --- a/.github/workflows/debian.yml +++ b/.github/workflows/debian.yml @@ -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: | diff --git a/bin/build_docs.sh b/bin/build_docs.sh index afc849ed..5fa220fb 100755 --- a/bin/build_docs.sh +++ b/bin/build_docs.sh @@ -20,7 +20,6 @@ fi cd "$REPO_DIR" - echo "[*] Fetching latest docs version" cd "$REPO_DIR/docs" git pull