Skip to content

Commit a920974

Browse files
authored
Merge pull request #158 from NikLeberg/ci/no-load
ci: no load
2 parents cfe1018 + a87018c commit a920974

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/collect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def printCLIOutput(stages: list) -> None:
237237
for j, container in enumerate(containers):
238238
# build docker build command
239239
command = [f"\tdocker build --file {container.name}/{container.dockerfile}"]
240-
command += [f"{n}--tag {container.name}:{t}" for t in container.tags]
240+
command += [f"{n}--tag ghcr.io/nikleberg/{container.name}:{t}" for t in container.tags]
241241
command += [f"{n}--platform", ",".join(container.platforms)]
242242
command += [f"{n}--build-arg {a}" for a in container.args]
243243
command += [f"{n}{container.name}"]

.github/workflows/container_builder.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ jobs:
7777
platforms: ${{matrix.platforms}}
7878
build-args: ${{matrix.args}}
7979
push: true # staging is always pushed
80-
load: true # make available for tests
8180
cache-from: ${{matrix.cache && 'type=gha' || ''}}
8281
cache-to: ${{matrix.cache && 'type=gha,mode=max' || ''}}
8382

0 commit comments

Comments
 (0)