Skip to content

Commit af9a4a6

Browse files
committed
💩 Temporarily Makes Release Pipeline More Error-Tolerant
This removes a fail-fast check that is blocking us from observing a latter part of the pipeline which is still being debugged. We'll put it back once we make the latter parts work correctly.
1 parent 941df79 commit af9a4a6

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,9 @@ jobs:
107107
# TODO: Remove `--skip-duplicate` from these after the pipeline steps are debugged and flowing.
108108
- name: dotnet nuget push dist/*.nupkg
109109
run: dotnet nuget push dist/*.nupkg --source https://api.nuget.org/v3/index.json --skip-duplicate --api-key ${{ secrets.NUGET_API_KEY }}
110-
- name: dotnet nuget push dist/*.snupkg
111-
run: dotnet nuget push dist/*.snupkg --source https://api.nuget.org/v3/index.json --skip-duplicate --api-key ${{ secrets.NUGET_API_KEY }}
110+
# TODO: Re-enable symbols pushing after the pipeline steps are debugged and flowing.
111+
#- name: dotnet nuget push dist/*.snupkg
112+
# run: dotnet nuget push dist/*.snupkg --source https://api.nuget.org/v3/index.json --skip-duplicate --api-key ${{ secrets.NUGET_API_KEY }}
112113

113114
- name: GitHub Release Publish
114115
uses: ncipollo/release-action@v1

0 commit comments

Comments
 (0)