There was an error while loading. Please reload this page.
1 parent e61e873 commit d2b387bCopy full SHA for d2b387b
1 file changed
.github/workflows/release.yml
@@ -31,6 +31,11 @@ jobs:
31
if: success() && github.event_name == 'push'
32
run: dotnet nuget push ./artifacts/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate
33
34
+ - name: Rename DLLs for artifact upload
35
+ run: |
36
+ mv bin/Release/netstandard2.1/Gamesmiths.Forge.dll Gamesmiths.Forge.netstandard2.1.dll
37
+ mv bin/Release/net8.0/Gamesmiths.Forge.dll Gamesmiths.Forge.net8.0.dll
38
+
39
- name: Publish Release
40
uses: softprops/action-gh-release@v2
41
with:
0 commit comments