From 609ea53320c7912a59771f4d8011bf76f19bb707 Mon Sep 17 00:00:00 2001 From: "Stuart Blackler (@im5tu)" Date: Tue, 25 Aug 2020 12:22:04 +0100 Subject: [PATCH] Updated github workflows --- .github/workflows/ci-pipeline.yml | 6 ++---- .github/workflows/release-builds.yml | 6 +----- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 46cc8d2..fc50e66 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -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 \ No newline at end of file + run: dotnet test --configuration Release --no-restore \ No newline at end of file diff --git a/.github/workflows/release-builds.yml b/.github/workflows/release-builds.yml index c774770..60da660 100644 --- a/.github/workflows/release-builds.yml +++ b/.github/workflows/release-builds.yml @@ -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 }} \ No newline at end of file