tolerate flaky third-party apt repo in AppImage build workflows

This commit is contained in:
MacRimi
2026-09-09 19:34:40 +02:00
parent 90c4a720e3
commit 4915d4044c
4 changed files with 20 additions and 4 deletions
+5 -1
View File
@@ -32,7 +32,11 @@ jobs:
- name: Install Python dependencies
run: |
sudo apt-get update
# Third-party apt repos on the runner (Google Chrome, Microsoft)
# sometimes serve a hash-mismatched index and abort the refresh.
# They are irrelevant here, so a failed refresh must not stop the
# build: python3 comes from the Ubuntu repos, which fetch fine.
sudo apt-get update || true
sudo apt-get install -y python3 python3-pip python3-venv
- name: Make build script executable