From db6fd2221585142fd9dc072803e4e882ed106f8f Mon Sep 17 00:00:00 2001 From: Jason Dove Date: Fri, 21 Jan 2022 15:25:03 -0600 Subject: [PATCH] try to fix build --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b16626c36..3be95a74a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,6 +33,8 @@ jobs: - name: Test run: dotnet test --no-restore --verbosity normal build_and_upload: + name: Build & Upload Develop Artifacts + needs: build_and_test runs-on: ${{ matrix.os }} if: github.event_name == 'push' && !contains(github.event.head_commit.message, '[no build]') strategy: @@ -56,6 +58,8 @@ jobs: steps: - name: Get the sources uses: actions/checkout@v2 + with: + fetch_depth: 0 - name: Setup .NET Core uses: actions/setup-dotnet@v1