Skip to content

Elskom/setup-latest-dotnet

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

setup-latest-dotnet

A github action to install the latest daily build of the .NET SDK.

- uses: Elskom/setup-latest-dotnet@main
  with:
    # major version of the .NET SDK to look for the newest version on in the feeds (optional, default is '7').
    VERSION_MAJOR: '7'
    # minor version of the .NET SDK to look for the newest version on in the feeds (optional, default is '0').
    VERSION_MINOR: '0'
    # version band of the .NET SDK to look for the newest version on in the feeds (optional, default is '1xx').
    # for different values look in the dotnet/installer github repository.
    VERSION_BAND: '1xx'
    # default value, this will override the input major, minor and band version for the .NET SDK to install (if set).
    SDK_VERSION: ''
    # The list of versions of the runtime to install.
    # The value below is the default list.
    RUNTIME_VERSIONS: '6.0.x'