Skip to content

Commit 4e79c94

Browse files
break into multiple lines (#44)
Co-authored-by: CommonLoon102 <[email protected]>
1 parent e212a4e commit 4e79c94

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/build.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,14 @@ jobs:
5858
run: dotnet clean && dotnet nuget locals all --clear
5959

6060
- name: Publish
61-
run: dotnet publish ${{ env.app_name }}/${{ env.app_name }}.${{ matrix.config.project }}/${{ env.app_name }}.${{ matrix.config.project }}.csproj --configuration Release --output ${{ env.publish_folder }} --self-contained true -p:PublishSingleFile=${{ matrix.config.is_single_file }} --runtime ${{ matrix.config.runtime }} --framework ${{ matrix.config.framework }}
61+
run: >
62+
dotnet publish ${{ env.app_name }}/${{ env.app_name }}.${{ matrix.config.project }}/${{ env.app_name }}.${{ matrix.config.project }}.csproj
63+
--configuration Release
64+
--output ${{ env.publish_folder }}
65+
--self-contained true
66+
-p:PublishSingleFile=${{ matrix.config.is_single_file }}
67+
--runtime ${{ matrix.config.runtime }}
68+
--framework ${{ matrix.config.framework }}
6269
6370
- name: Create Package
6471
if: (github.event_name == 'release' && github.event.action == 'published' && startsWith(github.ref, 'refs/tags/'))

0 commit comments

Comments
 (0)