Skip to content

Commit 186bcd3

Browse files
committed
fix 2
1 parent 82c6007 commit 186bcd3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/actions/publish-nuget-package/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ runs:
5151
shell: bash
5252
run: |
5353
dotnet nuget push **/*.nupkg --source ${{ vars.NUGET_PACKAGE_FEED_URL }} --api-key ${{ secrets.NUGET_PACKAGE_FEED_API_KEY }}
54-
working-directory: ${{ runner.temp }}/${{ env.working-directory }}
54+
working-directory: ${{ env.working-directory }}
5555

5656
- if: ${{ inputs.nuget-feed-server == 'AzureArtifacts' }}
5757
name: 'Publish package to Azure Artifacts'
5858
shell: bash
5959
run: |
6060
dotnet nuget add source ${{ vars.NUGET_PACKAGE_FEED_URL }} --name nuget-feed --username username --password ${{ secrets.NUGET_PACKAGE_FEED_API_KEY }} --store-password-in-clear-text
6161
dotnet nuget push **/*.nupkg --source nuget-feed --api-key ${{ secrets.NUGET_PACKAGE_FEED_API_KEY }} --skip-duplicate
62-
working-directory: ${{ runner.temp }}/${{ env.working-directory }}
62+
working-directory: ${{ env.working-directory }}

0 commit comments

Comments
 (0)