Skip to content

Commit a1828be

Browse files
committed
Fixing pipelines
1 parent ad9ad71 commit a1828be

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/CI.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,9 @@ jobs:
2727
uses: actions/setup-dotnet@v1
2828
with:
2929
dotnet-version: 5.0.x
30-
uses: actions/setup-dotnet@v1
31-
with:
32-
dotnet-version: 3.1.x
3330
- name: Install dependencies
3431
run: dotnet restore ./src/AzureMapsControl.Components/AzureMapsControl.Components.csproj
3532
- name: Build
36-
run: dotnet build --configuration Release --no-restore ./src/AzureMapsControl.Components/AzureMapsControl.Components.csproj -f net5.0
33+
run: dotnet build --configuration Release --no-restore ./src/AzureMapsControl.Components/AzureMapsControl.Components.csproj
3734
- name: Test
3835
run: dotnet test ./tests/AzureMapsControl.Components.Tests/AzureMapsControl.Components.Tests.csproj

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@ jobs:
2020
uses: actions/checkout@v2
2121
with:
2222
fetch-depth: 0
23-
- name: Setup .NET Core
23+
- name: Setup .NET 5.0
2424
uses: actions/setup-dotnet@v1
2525
with:
2626
dotnet-version: 5.0.x
27+
- name: Setup .NET Core 3.1
2728
uses: actions/setup-dotnet@v1
2829
with:
2930
dotnet-version: 3.1.x

0 commit comments

Comments
 (0)