Browse Source

try to fix build

pull/585/head
Jason Dove 5 years ago
parent
commit
db6fd22215
  1. 4
      .github/workflows/ci.yml

4
.github/workflows/ci.yml

@ -33,6 +33,8 @@ jobs:
- name: Test - name: Test
run: dotnet test --no-restore --verbosity normal run: dotnet test --no-restore --verbosity normal
build_and_upload: build_and_upload:
name: Build & Upload Develop Artifacts
needs: build_and_test
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
if: github.event_name == 'push' && !contains(github.event.head_commit.message, '[no build]') if: github.event_name == 'push' && !contains(github.event.head_commit.message, '[no build]')
strategy: strategy:
@ -56,6 +58,8 @@ jobs:
steps: steps:
- name: Get the sources - name: Get the sources
uses: actions/checkout@v2 uses: actions/checkout@v2
with:
fetch_depth: 0
- name: Setup .NET Core - name: Setup .NET Core
uses: actions/setup-dotnet@v1 uses: actions/setup-dotnet@v1

Loading…
Cancel
Save