We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce6d8de commit 978826fCopy full SHA for 978826f
1 file changed
.github/workflows/build.yml
@@ -171,6 +171,8 @@ jobs:
171
publish-package:
172
name: 'Publish development package'
173
needs: [pack]
174
+ env:
175
+ package-artifact-name: ${{ needs.pack.outputs.package-artifact-name }}
176
runs-on: ubuntu-latest
177
environment: 'Development'
178
steps:
@@ -185,7 +187,7 @@ jobs:
185
187
- name: 'Publish package to Azure Artifact feed'
186
188
uses: ./.github/actions/publish-nuget-package
189
with:
- artifact-name: ${{ needs.pack.outputs.package-artifact-name }}
190
+ artifact-name: ${{ env.package-artifact-name }}
191
nuget-feed-url: ${{ secrets.NUGET_FEED_URL }}
192
nuget-feed-api-key: ${{ secrets.NUGET_FEED_API_KEY }}
193
nuget-feed-server: 'AzureArtifacts'
0 commit comments