Skip to content

Commit db206fb

Browse files
chore: fix release workflow
1 parent 7cc8e49 commit db206fb

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/release.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,12 @@ jobs:
3131
run: dotnet pack -c Release --nologo --no-build
3232

3333
- name: Push to NuGet
34-
run: dotnet nuget push -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} src/**/*.nupkg
34+
continue-on-error: true
35+
run: dotnet nuget push -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} src/TimeZoneConverter/**/*.nupkg
36+
37+
- name: Push to NuGet
38+
continue-on-error: true
39+
run: dotnet nuget push -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} src/TimeZoneConverter.Posix/**/*.nupkg
3540

3641
- name: Archive Artifacts
3742
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)