File tree Expand file tree Collapse file tree
actions/publish-nuget-package Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ author: 'Pete Sramek'
33description : ' Publishes packages in working directory to public NuGet feed'
44inputs :
55# Required
6- artifact-name :
6+ package- artifact-name :
77 description : ' Name of the artifact to download and publish'
88 required : true
99 nuget-feed-url :
4343 - name : Download package artifact
4444 uses : actions/download-artifact@v5
4545 with :
46- name : ${{ needs.pack.outputs .package-artifact-name }}
46+ name : ${{ inputs .package-artifact-name }}
4747
4848 - if : ${{ inputs.nuget-feed-type == 'NuGet' }}
4949 name : ' Add NuGet source'
Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ jobs:
187187 - name : ' Publish package to Azure Artifact feed'
188188 uses : ./.github/actions/publish-nuget-package
189189 with :
190- artifact-name : ${{ env.package-artifact-name }}
190+ package- artifact-name : ${{ env.package-artifact-name }}
191191 nuget-feed-url : ${{ secrets.NUGET_FEED_URL }}
192192 nuget-feed-api-key : ${{ secrets.NUGET_FEED_API_KEY }}
193193 nuget-feed-server : ' AzureArtifacts'
You can’t perform that action at this time.
0 commit comments