How to install a particular version of temporal?

I would like to install the same version of Temporal across my servers. Currently, I use the development server and install it as

curl -sSf https://temporal.download/cli.sh | sh

Alternatively I can download from here.

https://temporal.download/cli/archive/latest?platform=linux&arch=amd64

But both methods get the latest version. Say If I want server version 1.8.2, How do I pinpoint it?

You can specify a version in the link, for example:

https://temporal.download/cli/archive/0.10.7?platform=linux&arch=amd64

see tags: Tags · temporalio/cli · GitHub

Unfortunately it seems like this solution doesn’t work any more (the link you posted returns “Not Found”)

try putting “v” infront of the version like
https://temporal.download/cli/archive/v0.10.7?platform=linux&arch=amd64
and see if that makes a difference