From 22e53f06d0a01d6855061125644a6c399b2a351a Mon Sep 17 00:00:00 2001 From: FiniteReality Date: Tue, 7 Apr 2020 22:48:42 +0100 Subject: [PATCH] Use correct syntax, disable build in test and pack --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b26812b9e..0ab39e61b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,16 +21,16 @@ jobs: run: dotnet restore - name: Build Discord.Net - run: dotnet build --configuration Release --no-restore + run: dotnet build --no-restore --configuration Release - name: Run Unit Tests - run: dotnet test --no-restore --verbosity normal + run: dotnet test --no-build --verbosity normal - name: Pack Discord.Net - run: dotnet pack --configuration Release + run: dotnet pack --no-build --configuration Release - name: Upload Artifacts uses: actions/upload-artifact@v1.0.0 with: name: nupkgs - path: $GITHUB_WORKSPACE/artifacts/pkg/ + path: ${{ github.workspace }}/artifacts/pkg/