From 158f171de75c2a06c17e132c2591b05751b50652 Mon Sep 17 00:00:00 2001 From: Laszlo Schreck Date: Fri, 14 May 2021 17:56:48 +0900 Subject: [PATCH] Remove --no-build to attempt to fix the workflow (#80) --- .github/workflows/publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 659bc93..92799c1 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -14,7 +14,7 @@ jobs: - name: Build the packages run: dotnet build --configuration Release /p:PackageOutputPath=$GITHUB_WORKSPACE/artifacts - name: Run the tests - run: dotnet test $GITHUB_WORKSPACE/Medidata.MAuth.sln --framework net5.0 --no-build + run: dotnet test $GITHUB_WORKSPACE/Medidata.MAuth.sln --framework net5.0 - name: Publish the packages run: dotnet nuget push "$GITHUB_WORKSPACE/artifacts/*.nupkg" --source $ARTIFACTORY_PUSH_TARGET --api-key $API_KEY env: