File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 58
58
run : dotnet clean && dotnet nuget locals all --clear
59
59
60
60
- 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 }}
62
69
63
70
- name : Create Package
64
71
if : (github.event_name == 'release' && github.event.action == 'published' && startsWith(github.ref, 'refs/tags/'))
You can’t perform that action at this time.
0 commit comments