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

Commit

Permalink
Updated github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Im5tu committed Aug 25, 2020
1 parent b6ced9f commit 609ea53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.401
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
run: dotnet build --configuration Release
- name: Test
run: dotnet test --no-restore --verbosity normal
run: dotnet test --configuration Release --no-restore
6 changes: 1 addition & 5 deletions .github/workflows/release-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,7 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.401
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal
run: dotnet build --configuration Release
- name: Publish Package
run: dotnet nuget push "artifacts/*.nupkg" -s ${{ secrets.NUGET_URL }} -k ${{ secrets.NUGET_TOKEN }}

0 comments on commit 609ea53

Please sign in to comment.