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 Jul 19, 2024
1 parent a24167f commit 4da6cb8
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion .github/actions/dotnet-publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,29 @@ runs:
- name: "Dotnet: Pack For Octopus"
working-directory: ${{github.workspace}}/src/${{inputs.OCTOPUS_DEPLOY_PACKAGE}}
shell: bash
run: dotnet publish --no-build --no-restore -warnaserror --configuration:Release -r:${{inputs.PLATFORM}} --self-contained -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:Version=${{inputs.BUILD_VERSION}}" -p:IncludeNativeLibrariesForSelfExtract=false "-p:IsProduction=${{inputs.PRODUCTION_BUILD}}" "-p:FFPublishing:True" -p:SolutionDir=..\\ --output ../server-dist/${{inputs.PLATFORM}} -nodeReuse:False ${{env.DOTNET_RELEASE_DEFINES}}
run: |
dotnet publish \
--no-restore \
-warnaserror \
--configuration:Release \
"-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:FFPublishing=True" \
"-p:SolutionDir=..\\" \
"-p:IsProduction=${{inputs.PRODUCTION_BUILD}}" \
--output ../server-dist/${{inputs.PLATFORM}} \
${{env.DOTNET_RELEASE_DEFINES}}
env:
ReleaseNotes: ${{inputs.RELEASE_NOTES}}
DOTNET_ROOT: "${{github.workspace}}/.dotnet/${{github.sha}}-${{github.run_id}}-${{github.run_number}}-${{github.run_attempt}}"
Expand Down

0 comments on commit 4da6cb8

Please sign in to comment.