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

New feature: specify the exact URL from which the Julia binaries are downloaded #50

Closed DilumAluthge closed 3 years ago

DilumAluthge commented 3 years ago

This pull request adds the ability for the user to specify the exact URL from which the Julia binaries are downloaded.

Example usage

steps:
  - uses: julia-actions/setup-julia@v1
    with:
      version: 'nightly'
      arch: 'x64'
      url: 'https://julialangnightlies-s3.julialang.org/bin/linux/x64/julia-latest-linux64.tar.gz'
DilumAluthge commented 3 years ago

I'm changing this to "draft" just so we don't accidentally click the merge button.