Skip to content

Commit 149c3c2

Browse files
committed
asfsaew
1 parent 978826f commit 149c3c2

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ author: 'Pete Sramek'
33
description: 'Publishes packages in working directory to public NuGet feed'
44
inputs:
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:
@@ -43,7 +43,7 @@ runs:
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'

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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'

0 commit comments

Comments
 (0)