@@ -104,7 +104,7 @@ Why GHCR rather than Docker Hub:
104104
105105``` bash
106106cat >> docker/.env << 'EOF '
107- DLSLIME_CTRL_IMAGE=ghcr.io/deeplink-org/dlslime-ctrl:0.1.17
107+ DLSLIME_CTRL_IMAGE=ghcr.io/deeplink-org/dlslime-ctrl:0.1.18
108108DLSLIME_CTRL_PULL_POLICY=missing
109109EOF
110110
@@ -127,7 +127,7 @@ The workflow [`.github/workflows/docker-publish.yml`](../.github/workflows/docke
127127| Trigger | Tags published |
128128| -------------------------- | ---------------------------------------- |
129129| Push to ` main ` / ` master ` | ` edge ` , ` sha-<short> ` |
130- | Push tag ` v0.1.17 ` | ` 0.1.17 ` , ` 0.1 ` , ` latest ` , ` sha-<short> ` |
130+ | Push tag ` v0.1.18 ` | ` 0.1.18 ` , ` 0.1 ` , ` latest ` , ` sha-<short> ` |
131131| Manual ` workflow_dispatch ` | optional extra tag from the input |
132132
133133One-time setup after the ** first** successful workflow run, in the GitHub UI:
@@ -141,12 +141,12 @@ Releasing a new version:
141141``` bash
142142# bump versions in:
143143# Cargo.toml, dlslime-ctrl/pyproject.toml, dlslime/pyproject.toml, pyproject.toml
144- git commit -am " release: v0.1.17 "
145- git tag v0.1.17
144+ git commit -am " release: v0.1.18 "
145+ git tag v0.1.18
146146git push origin main --tags
147147```
148148
149- The workflow will build ` linux/amd64 ` + ` linux/arm64 ` and push ` 0.1.17 ` , ` 0.1 ` , ` latest ` .
149+ The workflow will build ` linux/amd64 ` + ` linux/arm64 ` and push ` 0.1.18 ` , ` 0.1 ` , ` latest ` .
150150
151151### Manual push (without CI)
152152
@@ -162,7 +162,7 @@ echo "$GHCR_PAT" | docker login ghcr.io -u <your-github-username> --password-std
162162# 3. Build multi-arch and push.
163163docker buildx create --use --name dlslime-builder 2> /dev/null || docker buildx use dlslime-builder
164164
165- VERSION=0.1.17
165+ VERSION=0.1.18
166166docker buildx build \
167167 --platform linux/amd64,linux/arm64 \
168168 -f docker/ctrl.Dockerfile \
0 commit comments