Skip to content

Commit

Permalink
[GitActions][build] Change '|' character with '>-'
Browse files Browse the repository at this point in the history
  • Loading branch information
zapadi committed Feb 10, 2024
1 parent 472c3f9 commit faaf41d
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/build.yml
Expand Up @@ -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.
Expand Down Expand Up @@ -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
run: >-
dotnet build "${{ env.PROJECT_PATH }}"
--configuration "${{ env.CONFIGURATION }}"
--no-restore
-p:ContinuousIntegrationBuild=true

0 comments on commit faaf41d

Please sign in to comment.