diff --git a/.github/workflows/docker-description.yml b/.github/workflows/docker-description.yml index 9d2709e..ce1d5dd 100644 --- a/.github/workflows/docker-description.yml +++ b/.github/workflows/docker-description.yml @@ -20,4 +20,4 @@ jobs: with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - repository: factoriotools/factorio + repository: bplein/factorio diff --git a/build.py b/build.py index 8ed1f77..a2e3fe7 100755 --- a/build.py +++ b/build.py @@ -14,7 +14,7 @@ def build_dockerfile(sha256, version, tags): build_command = ["docker", "build", "--build-arg", f"VERSION={version}", "--build-arg", f"SHA256={sha256}", "."] for tag in tags: - build_command.extend(["-t", f"factoriotools/factorio:{tag}"]) + build_command.extend(["-t", f"bplein/factorio:{tag}"]) try: subprocess.run(build_command, cwd=build_dir, check=True) except subprocess.CalledProcessError: @@ -50,7 +50,7 @@ def main(push_tags=False): continue for tag in tags: try: - subprocess.run(["docker", "push", f"factoriotools/factorio:{tag}"], + subprocess.run(["docker", "push", f"bplein/factorio:{tag}"], check=True) except subprocess.CalledProcessError: print("Docker push failed")