[ci] Disable dotnet terminal logger in all workflows

This commit is contained in:
Laura Hausmann 2024-07-24 05:58:38 +02:00
parent ff38d35996
commit 35b42852e2
No known key found for this signature in database
GPG key ID: D044E84C5BE01605
3 changed files with 3 additions and 3 deletions

View file

@ -16,7 +16,7 @@ jobs:
- name: Print environment info - name: Print environment info
run: dotnet --info run: dotnet --info
- name: Run unit tests - name: Run unit tests
run: make test run: make test VERBOSE=true
- name: Build docker image - name: Build docker image
shell: bash shell: bash
run: | run: |

View file

@ -16,7 +16,7 @@ jobs:
- name: Print environment info - name: Print environment info
run: dotnet --info run: dotnet --info
- name: Build release artifacts - name: Build release artifacts
run: make ARCHIVE_BASENAME=${{ github.event.repository.name }} ARCHIVE_VERSION=${{ github.ref_name }} release-artifacts run: make release-artifacts ARCHIVE_BASENAME=${{ github.event.repository.name }} ARCHIVE_VERSION=${{ github.ref_name }} VERBOSE=true
- name: Upload artifacts - name: Upload artifacts
uses: actions/release-action@main uses: actions/release-action@main
with: with:

View file

@ -19,4 +19,4 @@ jobs:
- name: Print environment info - name: Print environment info
run: dotnet --info run: dotnet --info
- name: Run unit tests - name: Run unit tests
run: make test run: make test VERBOSE=true