mirror of
https://github.com/S7NetPlus/s7netplus.git
synced 2026-02-17 14:28:25 +08:00
Skip welcome message
This commit is contained in:
4
.github/workflows/deploy.yml
vendored
4
.github/workflows/deploy.yml
vendored
@@ -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 }}
|
||||
|
||||
3
.github/workflows/test.yml
vendored
3
.github/workflows/test.yml
vendored
@@ -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 }}
|
||||
Reference in New Issue
Block a user