another attempt to fix

This commit is contained in:
2026-03-02 21:45:45 +01:00
parent 9409afd81f
commit 4c8c42baf3
2 changed files with 5 additions and 4 deletions

View File

@@ -16,6 +16,7 @@ jobs:
uses: docker/setup-buildx-action@v3
with:
driver-opts: network=host
buildkitd-flags: '--allow-insecure-entitlement network.host'
- name: Login to Private Registry
uses: docker/login-action@v3

View File

@@ -19,10 +19,10 @@ if (response.ok) {
const middle = Math.round(files.length / 2);
shuffeld = files.slice(0,middle);
images = files.slice(middle);
} else {
console.error("FAILED TO FETCH");
} else {
console.error("FAILED TO FETCH", response.status, response.message);
process.exit(1);
}
}
---