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 Sep 6, 2024
1 parent ce943c0 commit f99f721
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/dotnet-publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ runs:
"-p:FFPublishing=True" \
"-p:SolutionDir=..\\" \
"-p:IsProduction=${{inputs.PRODUCTION_BUILD}}" \
--output ../server-dist/${{inputs.PLATFORM}} \
--output ${{github.workspace}}/server-dist/${{inputs.PLATFORM}} \
${{env.DOTNET_RELEASE_DEFINES}}
env:
ReleaseNotes: ${{inputs.RELEASE_NOTES}}
Expand All @@ -76,6 +76,6 @@ runs:
MSBUILDTERMINALLOGGER: "auto"

- name: "Dotnet: Zip Packages for Octopus"
working-directory: ${{github.workspace}}/src/server-dist/${{inputs.PLATFORM}}
working-directory: ${{github.workspace}}/server-dist/${{inputs.PLATFORM}}
shell: bash
run: zip -9r "${{github.workspace}}/${{inputs.OCTOPUS_DEPLOY_PACKAGE_ZIP}}-${{inputs.PLATFORM}}.${{inputs.BUILD_VERSION}}.zip" . -x -- *.pdb

0 comments on commit f99f721

Please sign in to comment.