Fixed line continuation issues for dotnet publish command in YAML file#13
Merged
Fixed line continuation issues for dotnet publish command in YAML file#13
Conversation
Removed unnecessary line breaks in the dotnet publish command within `build-and-release.yml`. This change consolidates parameters into a single line, enhancing readability and maintainability.
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR fixes line continuation issues in the GitHub Actions workflow file by consolidating the dotnet publish command from a multi-line format with backslash continuations into a single line. This change improves the YAML file's readability and eliminates potential issues with line continuation syntax.
Key changes:
- Consolidated multi-line
dotnet publishcommand into a single line - Removed the
run: |block syntax and backslash line continuations - Maintained all original command parameters and functionality
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixed line continuation issues for dotnet publish command in YAML file
Removed unnecessary line breaks in the dotnet publish command within
build-and-release.yml. This change consolidates parameters into a single line, enhancing readability and maintainability.