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

View File

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