Even after 1d3628e , latest returns v0.4.19
sudo docker run --rm openrct2/openrct2-cli:latest --version
OpenRCT2, v0.4.19 (088081d on HEAD)
Linux (x86-64)
Network version: 0.4.19-0
Plugin API version: 104
Current park file version: 50
Minimum park file version: 50
Breakpad support disabled
The step "Publish docker images" is skipped in the CI workflow, e.g. for 0.4.20 : https://github.com/OpenRCT2/openrct2-docker/actions/runs/13637244952/job/38118930212
I have identified that multiple versions are missing (e.g. 0.4.19 and 0.4.20). I think it may be because the release tags on the commits for v0.4.19.1 and 0.4.20 don't match with the proper ci.yml. For example, the release tagged as 0.4.20 has a ci.yml with values for tag and dockerlst of 0.4.19 5387921
The CI workflow (ci.yml) is configured to only push Docker images when there's a git tag that starts with 'v' (the condition if: startsWith(github.ref, 'refs/tags/v')) : https://github.com/OpenRCT2/openrct2-docker/blob/master/.github/workflows/ci.yml#L44
Additional logs :
sudo docker run --rm openrct2/openrct2-cli:0.4.19 --version
Unable to find image 'openrct2/openrct2-cli:0.4.19' locally
0.4.19: Pulling from openrct2/openrct2-cli
Digest: sha256:fd49aa67a1861b2381f1f73364f3bb5e18b22d833c6aaacb414b05ad8838d5c6
Status: Downloaded newer image for openrct2/openrct2-cli:0.4.19
OpenRCT2, v0.4.19 (088081d on HEAD)
Linux (x86-64)
Network version: 0.4.19-0
Plugin API version: 104
Current park file version: 50
Minimum park file version: 50
Breakpad support disabled
sudo docker run --rm openrct2/openrct2-cli:0.4.19.1 --version
Unable to find image 'openrct2/openrct2-cli:0.4.19.1' locally
docker: Error response from daemon: manifest for openrct2/openrct2-cli:0.4.19.1 not found: manifest unknown: manifest unknown.
sudo docker run --rm openrct2/openrct2-cli:0.4.20 --version
Unable to find image 'openrct2/openrct2-cli:0.4.20' locally
docker: Error response from daemon: manifest for openrct2/openrct2-cli:0.4.20 not found: manifest unknown: manifest unknown.
Even after 1d3628e ,
latestreturnsv0.4.19The step "Publish docker images" is skipped in the CI workflow, e.g. for 0.4.20 : https://github.com/OpenRCT2/openrct2-docker/actions/runs/13637244952/job/38118930212
I have identified that multiple versions are missing (e.g. 0.4.19 and 0.4.20). I think it may be because the release tags on the commits for
v0.4.19.1and0.4.20don't match with the properci.yml. For example, the release tagged as 0.4.20 has aci.ymlwith values fortaganddockerlstof0.4.195387921The CI workflow (ci.yml) is configured to only push Docker images when there's a git tag that starts with 'v' (the condition
if: startsWith(github.ref, 'refs/tags/v')) : https://github.com/OpenRCT2/openrct2-docker/blob/master/.github/workflows/ci.yml#L44Additional logs :