From ee8efc9eb679f568f2e1ff8611b10135635194b4 Mon Sep 17 00:00:00 2001 From: Zsolt Tasnadi Date: Fri, 31 Jul 2026 19:20:51 +0200 Subject: [PATCH] Use the canonical git server name (git.teletypegames.org) Co-Authored-By: Claude Fable 5 --- README.md | 8 ++++---- builder.Dockerfile | 6 +++--- example-woodpecker.yaml | 8 ++++---- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 6c95948..990c575 100644 --- a/README.md +++ b/README.md @@ -32,16 +32,16 @@ and `-docs.zip` to the droparea, then triggers ## Builder image The export step uses the TIC-80 Pro image -(`git.teletype.hu/internal/tic80pro`, built from the +(`git.teletypegames.org/internal/tic80pro`, built from the `tic80pro-dockerfile` repo). For the lint / minify / docs steps, `builder.Dockerfile` bakes Lua 5.4 + luacheck + ldoc + zip into -`git.teletype.hu/internal/tic80-luatools`, so the pipeline no longer +`git.teletypegames.org/internal/tic80-luatools`, so the pipeline no longer runs luarocks (and a C compiler install) on every run: ```sh docker build --platform linux/amd64 -f builder.Dockerfile \ - -t git.teletype.hu/internal/tic80-luatools:latest . -docker push git.teletype.hu/internal/tic80-luatools:latest + -t git.teletypegames.org/internal/tic80-luatools:latest . +docker push git.teletypegames.org/internal/tic80-luatools:latest ``` Detailed documentation lives on the wiki: `/development/tic80`. diff --git a/builder.Dockerfile b/builder.Dockerfile index a142eb0..7876a8a 100644 --- a/builder.Dockerfile +++ b/builder.Dockerfile @@ -3,13 +3,13 @@ # run luarocks (and a C compiler install) on every run. # # The export step keeps using the separate TIC-80 Pro image -# (git.teletype.hu/internal/tic80pro, built from the tic80pro-dockerfile +# (git.teletypegames.org/internal/tic80pro, built from the tic80pro-dockerfile # repo) — this image only covers the Lua tooling around it. # # Build & push (the CI runner is linux/amd64): # docker build --platform linux/amd64 -f builder.Dockerfile \ -# -t git.teletype.hu/internal/tic80-luatools:latest . -# docker push git.teletype.hu/internal/tic80-luatools:latest +# -t git.teletypegames.org/internal/tic80-luatools:latest . +# docker push git.teletypegames.org/internal/tic80-luatools:latest FROM alpine:3.22 diff --git a/example-woodpecker.yaml b/example-woodpecker.yaml index ec0fba6..24cf703 100644 --- a/example-woodpecker.yaml +++ b/example-woodpecker.yaml @@ -6,22 +6,22 @@ steps: - 'make ci-version' - name: lint - image: git.teletype.hu/internal/tic80-luatools:latest + image: git.teletypegames.org/internal/tic80-luatools:latest commands: - 'make ci-lint' - name: minify - image: git.teletype.hu/internal/tic80-luatools:latest + image: git.teletypegames.org/internal/tic80-luatools:latest commands: - 'make ci-minify' - name: docs - image: git.teletype.hu/internal/tic80-luatools:latest + image: git.teletypegames.org/internal/tic80-luatools:latest commands: - 'make ci-docs' - name: export - image: git.teletype.hu/internal/tic80pro:latest + image: git.teletypegames.org/internal/tic80pro:latest environment: XDG_RUNTIME_DIR: /tmp commands: