From 754324c027ffaa9e13fcee59bd3289f907f8b36e Mon Sep 17 00:00:00 2001 From: Ed Kolis Date: Fri, 22 May 2020 06:43:58 -0400 Subject: [PATCH] Update dotnetcore.yml move publish before test so failing unit tests don't prevent publishing --- .github/workflows/dotnetcore.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index 25df87e78..5b13b0d6a 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -21,8 +21,8 @@ jobs: run: dotnet restore - name: Build run: dotnet build --configuration Release --no-restore - - name: Test - run: dotnet test --no-restore --verbosity normal - name: github-action-publish-binaries uses: skx/github-action-publish-binaries@release-0.14 + - name: Test + run: dotnet test --no-restore --verbosity normal