More CI cleanups

This commit is contained in:
Jordan Brown
2020-07-21 20:10:55 -04:00
parent 5ac7ad2131
commit b158bfbd1e
23 changed files with 409 additions and 234 deletions
+3 -3
View File
@@ -513,7 +513,7 @@ jobs:
deploy-http:
name: Deploy HTTP API
needs: [linux-unit-tests, linux-integration-tests, windows-unit-tests, windows-integration-test]
needs: [upload-code-coverage, validate-openapi-spec]
runs-on: windows-latest
if: github.event_name == 'push' && github.ref == 'master' && contains(github.event.head_commit.message, '[APIDeploy]')
steps:
@@ -556,7 +556,7 @@ jobs:
deploy-dm:
name: Deploy DreamMaker API
needs: [linux-unit-tests, linux-integration-tests, windows-unit-tests, windows-integration-test]
needs: [upload-code-coverage, validate-openapi-spec]
runs-on: windows-latest
if: github.event_name == 'push' && github.ref == 'master' && contains(github.event.head_commit.message, '[DMDeploy]')
steps:
@@ -597,7 +597,7 @@ jobs:
deploy-client:
name: Deploy Nuget Packages
needs: [linux-unit-tests, linux-integration-tests, windows-unit-tests, windows-integration-test]
needs: [upload-code-coverage, validate-openapi-spec]
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'master' && contains(github.event.head_commit.message, '[NugetDeploy]')
steps: