File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,17 +3,17 @@ name: Publish NuGet Package
33on :
44 push :
55 tags :
6- - ' v* '
6+ - " v* "
77 workflow_dispatch :
88 inputs :
99 version :
10- description : ' Version to publish (e.g., 1.0.4)'
10+ description : " Version to publish (e.g., 1.0.4)"
1111 required : false
1212 type : string
1313
1414env :
15- DOTNET_VERSION : ' 10.0.x'
16- PROJECT_PATH : ' src/Microsoft.Azure.Functions.Worker.Extensions.OpenApi.CLI/Microsoft.Azure.Functions.Worker.Extensions.OpenApi.CLI.csproj'
15+ DOTNET_VERSION : " 10.0.x"
16+ PROJECT_PATH : " src/Microsoft.Azure.Functions.Worker.Extensions.OpenApi.CLI/Microsoft.Azure.Functions.Worker.Extensions.OpenApi.CLI.csproj"
1717
1818jobs :
1919 build-and-publish :
5858 - name : Push to GitHub Packages
5959 run : dotnet nuget push ./nupkg/*.nupkg --api-key ${{ secrets.GITHUB_TOKEN }} --source "https://nuget.pkg.github.com/JeroenvdBurg/index.json" --skip-duplicate
6060
61+ - name : Push to Devops Packages
62+ run : dotnet nuget push ./nupkg/*.nupkg --api-key ${{ secrets.AZURE_DEVOPS_TOKEN }} --source ${{ vars.AZURE_ARTIFACTS_FEED_URL }}
63+
6164 - name : Upload NuGet package artifact
6265 uses : actions/upload-artifact@v4
6366 with :
You can’t perform that action at this time.
0 commit comments