-
Notifications
You must be signed in to change notification settings - Fork 549
Closed
Description
I would like to use this action to setup .NET Core for some class libraries I support. I like to run tests on multiple versions of .NET Core, but it appears I cannot use this task to install multiple versions of .NET Core.
Repro
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-dotnet@v1
with:
version: '2.1.801'
- run: dotnet --info
- uses: actions/setup-dotnet@v1
with:
version: '3.0.100-preview8-013656'
- run: dotnet --infoExpected
Both .NET Core 2.1 and 3.0 are installed and available when running dotnet commands.
Actual
Usages of actions/setup-dotnet are not additive; the last one wins, so only 3.0.100-preview8-013656 is available.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels