You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "Publishing symbol package to NuGet (.snupkg)...";
249
-
dotnet nuget push dist/OpenFga.Sdk.*.snupkg --api-key ${{steps.login.outputs.NUGET_API_KEY}} --skip-duplicate --source https://api.nuget.org/v3/index.json || echo "No symbol package found or already published."
dotnet nuget push dist/OpenFga.Sdk.*.snupkg --api-key ${NUGET_AUTH_TOKEN} --skip-duplicate --source https://api.nuget.org/v3/index.json || echo "No symbol package found or already published."
244
+
env:
245
+
NUGET_AUTH_TOKEN: ${{secrets.NUGET_AUTH_TOKEN}}
246
+
250
247
251
-
- name: Publish to GitHub Package Registry
252
-
continue-on-error: true
253
-
run: |
254
-
echo "Publishing primary package to GitHub Package Registry (.nupkg)...";
echo "Publishing symbol package to GitHub Package Registry (.snupkg)...";
257
-
dotnet nuget push dist/OpenFga.Sdk.*.snupkg --api-key ${{ secrets.GITHUB_TOKEN }} --skip-duplicate --source https://nuget.pkg.github.com/openfga/index.json || echo "No symbol package found or already published."
0 commit comments