Skip to content

Commit

Permalink
[Actions] Updated .github/actions/dotnet-publish/action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
credfeto committed Nov 6, 2024
1 parent 5b8b85b commit 1e4b538
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .github/actions/dotnet-publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,20 @@ runs:
"-r:${{inputs.PLATFORM}}" \
--self-contained \
-nodeReuse:False \
-p:NoWarn=NETSDK1179 \
-p:SuppressNETCoreSdkPreviewMessage=true \
-p:PublishSingleFile=true \
-p:PublishAot=false \
-p:PublishReadyToRun=False \
-p:PublishReadyToRunShowWarnings=True \
-p:DisableSwagger=False \
-p:TreatWarningsAsErrors=True \
-p:IncludeNativeLibrariesForSelfExtract=false \
"-p:Version=${{inputs.BUILD_VERSION}}" \
"-p:DisableSwagger=${{env.RELEASE}}" \
"-p:FFPublishing=True" \
"-p:SolutionDir=..\\" \
"-p:IncludeNativeLibrariesForSelfExtract=false" \
"-p:IsProduction=${{inputs.PRODUCTION_BUILD}}" \
"-p:NoWarn=NETSDK1179" \
"-p:Optimize=true" \
"-p:PublishAot=false" \
"-p:PublishReadyToRun=True" \
"-p:PublishReadyToRunShowWarnings=True" \
"-p:PublishSingleFile=true" \
"-p:SolutionDir=..\\" \
"-p:SuppressNETCoreSdkPreviewMessage=true" \
"-p:TreatWarningsAsErrors=True" \
"-p:Version=${{inputs.BUILD_VERSION}}" \
--output ${{github.workspace}}/server-dist/${{inputs.PLATFORM}} \
${{env.DOTNET_RELEASE_DEFINES}}
env:
Expand Down

0 comments on commit 1e4b538

Please sign in to comment.