You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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.195387921
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.
The text was updated successfully, but these errors were encountered:
docker run --rm openrct2/openrct2-cli:latest --version
OpenRCT2, v0.4.20 (1c1b6d4 on HEAD)
Linux (x86-64)
Network version: 0.4.20-0
Plugin API version: 104
Current park file version: 51
Minimum park file version: 51
Breakpad support disabled
Would you be interested in a proposal for a more maintainable workflow for this repository? I believe there’s an opportunity to make the process less manual and reduce the likelihood of errors. I’d be happy to discuss these ideas further or submit a draft pull request for review if there’s interest. Let me know your thoughts
Even after 1d3628e ,
latest
returnsv0.4.19
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
and0.4.20
don't match with the properci.yml
. For example, the release tagged as 0.4.20 has aci.yml
with values fortag
anddockerlst
of0.4.19
5387921The 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 :
The text was updated successfully, but these errors were encountered: