Skip welcome message

This commit is contained in:
Serge Camille
2020-09-13 10:54:16 +02:00
parent ce97fcf335
commit fb44b56c16
2 changed files with 5 additions and 2 deletions

View File

@@ -9,6 +9,8 @@ jobs:
name: Deploy
needs: build_test
runs-on: windows-latest
env:
DOTNET_NOLOGO : 1
if: ${{ false }} # not active right now
steps:
@@ -33,7 +35,7 @@ jobs:
- name: Pack
if: ${{ matrix.pack }}
run: dotnet pack --configuration "${{ env.configuration }}" /p:Version="${{ steps.gitversion.outputs.nuGetVersion }}" -o "${{ env.artifacts }}"
run: dotnet pack --nologo --configuration "${{ env.configuration }}" /p:Version="${{ steps.gitversion.outputs.nuGetVersion }}" -o "${{ env.artifacts }}"
- name: Upload Artifacts
if: ${{ matrix.pack }}

View File

@@ -11,6 +11,7 @@ jobs:
env:
configuration: Release
artifacts: ${{ github.workspace }}/artifacts
DOTNET_NOLOGO : 1
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
@@ -47,4 +48,4 @@ jobs:
run: dotnet restore S7.Net.UnitTest
- name: Test
run: dotnet test --no-restore --verbosity normal --logger GitHubActions --framework ${{ matrix.test-framework }}
run: dotnet test --no-restore --nologo --verbosity normal --logger GitHubActions --framework ${{ matrix.test-framework }}