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.
1 parent af69e0f commit 78e7762Copy full SHA for 78e7762
.github/workflows/publish_release.yml
@@ -49,3 +49,11 @@ jobs:
49
token: ${{ secrets.GITHUB_TOKEN }}
50
files: |
51
./Harmony/bin/Release/HarmonyX.${{ steps.get_version.outputs.version_num }}.nupkg
52
+
53
+ - name: Publish
54
+ env:
55
+ NUGET_SOURCE: 'nuget.org'
56
+ NUGET_API_KEY: ${{ secrets.NUGET_KEY }}
57
+ run: |
58
+ dotnet nuget push --skip-duplicate "./Harmony/bin/Release/HarmonyX.*.nupkg" \
59
+ --source "$NUGET_SOURCE" --api-key "$NUGET_API_KEY"
0 commit comments