From faaf41d195fded141cab3bae7b00c33320d7eb09 Mon Sep 17 00:00:00 2001 From: zapadi Date: Sat, 10 Feb 2024 20:45:41 +0200 Subject: [PATCH] [GitActions][build] Change '|' character with '>-' --- .github/workflows/build.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4971c9a7..54e69e8e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,10 +28,8 @@ env: DOTNET_MULTILEVEL_LOOKUP: 0 - PROJECT_PATH: "." + PROJECT_PATH: . - PROJECT_NAME: redmine-net-api - CONFIGURATION: Release # Set the build number in MinVer. @@ -77,8 +75,8 @@ jobs: run: dotnet restore "${{ env.PROJECT_PATH }}" - name: Build - run: | - dotnet build "${{ env.PROJECT_PATH }}" \ - --configuration "${{ env.CONFIGURATION }}" \ - --no-restore \ - /p:ContinuousIntegrationBuild=true \ No newline at end of file + run: >- + dotnet build "${{ env.PROJECT_PATH }}" + --configuration "${{ env.CONFIGURATION }}" + --no-restore + -p:ContinuousIntegrationBuild=true \ No newline at end of file