Currently there are releases such as Latest successful build for branch version-2-2 for the last successful build for that branch.
However there isn't anything similar for the tagged Nim releases. Take the latest Nim version v2.2.0 which is at Commit 78983f1. There's no nightlies release for "Latest build for release v2.2.0".
Ideally this would allow us to setup github runner actions which installed Nim simply by:
curl https://github.com/nim-lang/nightlies/releases/tag/latest-release-2.2.0/linux_arm64.tar.xz
untar linux_arm64.tar.xz
Specifically it'd need to be easy to do this:
NIM_VERSION=v2.2.0
curl https://github.com/nim-lang/nightlies/releases/tag/latest-release-${NIM_VERSION}/linux_arm64.tar.xz
Currently there are releases such as Latest successful build for branch version-2-2 for the last successful build for that branch.
However there isn't anything similar for the tagged Nim releases. Take the latest Nim version
v2.2.0which is atCommit 78983f1. There's nonightliesrelease for "Latest build for release v2.2.0".Ideally this would allow us to setup github runner actions which installed Nim simply by:
Specifically it'd need to be easy to do this: