We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c26fedd + 902804f commit 6d63a19Copy full SHA for 6d63a19
1 file changed
.github/workflows/build-and-test.yml
@@ -144,7 +144,8 @@ jobs:
144
- name: MyGet Publish
145
shell: pwsh
146
run: |
147
+ $apiKey = ${{secrets.MYGET_TOKEN}}
148
$source = "https://www.myget.org/F/sixlabors/api/v2/package"
149
$symbolSource = "https://www.myget.org/F/sixlabors/api/v3/index.json"
- dotnet nuget push .\artifacts\*.nupkg --symbol-api-key ${{secrets.MYGET_TOKEN}} --source $source --symbol-source $symbolSource
150
+ dotnet nuget push .\artifacts\*.nupkg -k = $apiKey -sk $apiKey -s $source -ss $symbolSource
151
# TODO: If github.ref starts with 'refs/tags' then it was tag push and we can optionally push out package to nuget.org
0 commit comments