diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ae11e7a..1b6ea18 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -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 }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e94e324..226aa6f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 }} \ No newline at end of file + run: dotnet test --no-restore --nologo --verbosity normal --logger GitHubActions --framework ${{ matrix.test-framework }} \ No newline at end of file