Skip to content

Commit

Permalink
feat: upload debug build nuget as default
Browse files Browse the repository at this point in the history
  • Loading branch information
sirskunkalot committed Apr 28, 2022
1 parent da5dd9a commit 0641a8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
1 change: 0 additions & 1 deletion .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ jobs:
- name: Publish to NuGet
run: |
dotnet nuget push "JotunnLib/bin/Release/*.nupkg" -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate
dotnet nuget push "JotunnLib/bin/Debug/*.nupkg" -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate
- name: Create GH Release
Expand Down
10 changes: 2 additions & 8 deletions JotunnLib/JotunnLib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
<Id>JotunnLib</Id>
<LangVersion>8.0</LangVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>JotunnLib</PackageId>
<Description>Jötunn (/ˈjɔːtʊn/, "giant") is a modding library for Valheim, with the goal of making the lives of mod developers easier.</Description>
<Authors>Valheim-Modding team</Authors>
<projectUrl>https://github.com/Valheim-Modding/</projectUrl>
<PackageIcon>images\JVL_Logo_128x128.png</PackageIcon>
Expand All @@ -19,14 +21,6 @@
<RootNamespace>Jotunn</RootNamespace>
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<PackageId>JotunnLib</PackageId>
<Description>Jötunn (/ˈjɔːtʊn/, "giant") is a modding library for Valheim, with the goal of making the lives of mod developers easier.</Description>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<PackageId>JotunnLib.Debug</PackageId>
<Description>Jötunn (/ˈjɔːtʊn/, "giant") is a modding library for Valheim, with the goal of making the lives of mod developers easier. The debug version has additional developer QoL additions implemented.</Description>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Unity\Assets\Plugins\**" />
<Compile Remove="Unity\Library\**" />
Expand Down

0 comments on commit 0641a8c

Please sign in to comment.