Update can never fail

This commit is contained in:
Antoine Martin 2024-10-15 22:42:07 -04:00
parent 6f745dbfd7
commit 083e6a5a34
Signed by: forge
GPG key ID: D62A472A4AA7D541

View file

@ -22,7 +22,7 @@ jobs:
apk --allow-untrusted --update-cache --repositories-file /dev/null --repository $upstream list | grep -v installed | awk '{print $1, $2}' | sort > upstream
- name: Fetch info from downstream
run: |
apk --allow-untrusted --update-cache --repositories-file /dev/null --repository $downstream update
apk --allow-untrusted --update-cache --repositories-file /dev/null --repository $downstream update || true
apk --allow-untrusted --update-cache --repositories-file /dev/null --repository $downstream list | grep -v installed | awk '{print $1, $2}' | sort > downstream
- name: Missing apks detection
run: |