From 8fd1761688461c420ca8469c39546936c80f1f86 Mon Sep 17 00:00:00 2001 From: Stan Grams Date: Sun, 19 Jul 2026 13:06:43 +0200 Subject: [PATCH] [chore](trx-rs): use nested SDK image path trx-rs/sdk Match the image name that was pushed to the registry (git.haxx.space/sjg/trx-rs/sdk) across the workflow, devcontainer and README. Assisted-By: Claude Code (claude-opus-4) Claude-Session: https://claude.ai/code/session_01NFpGtGTWUEYXLwZeZs2RAV Signed-off-by: Stan Grams --- .devcontainer/devcontainer.json | 2 +- .gitea/workflows/ci.yml | 4 ++-- container/README.md | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index e11972cc..ed8cbc3f 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,6 +1,6 @@ { "name": "trx-rs SDK", - "image": "git.haxx.space/sjg/trx-rs-sdk:latest", + "image": "git.haxx.space/sjg/trx-rs/sdk:latest", "workspaceFolder": "/work", "workspaceMount": "source=${localWorkspaceFolder},target=/work,type=bind", "customizations": { diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 3f08504c..ff587761 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -20,7 +20,7 @@ env: jobs: lint: runs-on: ubuntu-latest - container: git.haxx.space/sjg/trx-rs-sdk:latest + container: git.haxx.space/sjg/trx-rs/sdk:latest steps: - uses: actions/checkout@v4 - name: rustfmt @@ -30,7 +30,7 @@ jobs: test: runs-on: ubuntu-latest - container: git.haxx.space/sjg/trx-rs-sdk:latest + container: git.haxx.space/sjg/trx-rs/sdk:latest steps: - uses: actions/checkout@v4 - name: Build diff --git a/container/README.md b/container/README.md index df75998b..1fd15f16 100644 --- a/container/README.md +++ b/container/README.md @@ -19,9 +19,9 @@ and `clippy` are identical everywhere — no "works on my machine". ```bash # from the repo root -podman build -t git.haxx.space/sjg/trx-rs-sdk:latest container +podman build -t git.haxx.space/sjg/trx-rs/sdk:latest container podman login git.haxx.space -podman push git.haxx.space/sjg/trx-rs-sdk:latest +podman push git.haxx.space/sjg/trx-rs/sdk:latest ``` Tag with the Rust version too (e.g. `:1.97.1`) if you want reproducible pins. @@ -36,7 +36,7 @@ Reproducible one-off build, no local toolchain needed: ```bash podman run --rm -it -v "$PWD":/work -w /work \ - git.haxx.space/sjg/trx-rs-sdk:latest \ + git.haxx.space/sjg/trx-rs/sdk:latest \ cargo build --release ```