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 f499ed2 commit 5e00b19Copy full SHA for 5e00b19
1 file changed
.github/workflows/internal-ci.yml
@@ -112,11 +112,18 @@ jobs:
112
run: |
113
dotnet nuget push --source "github" ${{ env.NuGetDirectory }}/*.nupkg
114
115
+ - name: Publish Package to Forgejo
116
+ run: >
117
+ dotnet nuget push ${{ env.NuGetDirectory }}/*.nupkg
118
+ --api-key ${{ secrets.FORGEJO_DEPLOY_TOKEN }}
119
+ --source https://git.offworldcolonies.nexus/api/packages/KSPModdingLibs/nuget/index.json
120
+
121
- name: Publish to Github Releases
122
run: >
123
gh release create ${{ github.ref_name }}
124
--notes-file "${{ steps.yaclog-show.outputs.body-file }}"
125
--title "${{ needs.build.outputs.package-version }}"
126
${{ env.NuGetDirectory }}/*.nupkg
127
env:
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
128
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
129
0 commit comments