diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-09-02 18:15:02 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-09-02 18:15:02 +0300 |
commit | 1758550758143d4ea73c76c767f791b6c83b3da7 (patch) | |
tree | 2e36b204faf55663544af2867e0066ec7e886a0c /.github | |
parent | bf852d8bbfc2422994757b4dbce21edc12238eb1 (diff) | |
download | sciteco-1758550758143d4ea73c76c767f791b6c83b3da7.tar.gz |
nightly workflow: try `apt update` before installing packages
Hopefully fixes the nightly AppImage builds.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/nightly.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 86f02d0..89f11b3 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -18,6 +18,9 @@ jobs: - name: Git Clone uses: actions/checkout@v4.1.6 + - name: Update Repositories + run: sudo apt-get update + - name: Build AppImages env: GH_TOKEN: ${{ github.token }} |