julia-actions / setup-julia

This action sets up a Julia environment for use in actions by downloading a specified version of Julia and adding it to PATH.
MIT License
93 stars 23 forks source link

Question: best way to request "latest release" #147

Closed ulysses4ever closed 1 year ago

ulysses4ever commented 1 year ago

I want to request the latest Julia release — is there a way to do that? version: latest doesn't seem to work.

SaschaMann commented 1 year ago

The readme contains examples: https://github.com/julia-actions/setup-julia#julia-versions

'1' will download the latest stable, i.e. non-prerelease, version. Make sure to use quotes around it, otherwise the yaml parser might mistunderstand it.

ulysses4ever commented 1 year ago

Thank you for the reply! I read the readme several times but wasn't sure that latest tagged version is in fact the latest released version: a tag can be attached to anything. I suggest to change it to latest released version if possible.