Skip to content
This repository was archived by the owner on Jun 16, 2021. It is now read-only.

Commit 609ea53

Browse files
committed
Updated github workflows
1 parent b6ced9f commit 609ea53

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

.github/workflows/ci-pipeline.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ jobs:
1717
uses: actions/setup-dotnet@v1
1818
with:
1919
dotnet-version: 3.1.401
20-
- name: Install dependencies
21-
run: dotnet restore
2220
- name: Build
23-
run: dotnet build --configuration Release --no-restore
21+
run: dotnet build --configuration Release
2422
- name: Test
25-
run: dotnet test --no-restore --verbosity normal
23+
run: dotnet test --configuration Release --no-restore

.github/workflows/release-builds.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,7 @@ jobs:
1616
uses: actions/setup-dotnet@v1
1717
with:
1818
dotnet-version: 3.1.401
19-
- name: Install dependencies
20-
run: dotnet restore
2119
- name: Build
22-
run: dotnet build --configuration Release --no-restore
23-
- name: Test
24-
run: dotnet test --no-restore --verbosity normal
20+
run: dotnet build --configuration Release
2521
- name: Publish Package
2622
run: dotnet nuget push "artifacts/*.nupkg" -s ${{ secrets.NUGET_URL }} -k ${{ secrets.NUGET_TOKEN }}

0 commit comments

Comments
 (0)