Skip to content

Commit

Permalink
Fix release pipeline and add debuggable to build.
Browse files Browse the repository at this point in the history
  • Loading branch information
kenan-kajkus committed Nov 23, 2023
1 parent 4b8c2af commit 7622ed9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: dotnet build --no-restore --configuration Release

- name: Pack
run: dotnet pack --no-restore --no-build --configuration Release --include-symbols -p:PackageVersion=${{github.ref_name}} --output ${{ env.PACKAGE_OUTPUT_DIRECTORY}}
run: dotnet pack --no-restore --no-build --configuration Release -p:PackageVersion=${{github.ref_name}} --output ${{ env.PACKAGE_OUTPUT_DIRECTORY}}

- name: Push
run: dotnet nuget push ${{ env.PACKAGE_OUTPUT_DIRECTORY}}/*.nupkg -k ${{secrets.NUGET_AUTH_TOKEN}} -s ${{ env.NUGET_SOURCE_URL}}
2 changes: 2 additions & 0 deletions GiroCode/GiroCode.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
<Nullable>enable</Nullable>
<RepositoryUrl>https://github.com/kenan-kajkus/GiroCode</RepositoryUrl>
<TargetFrameworks>net8.0;net6.0</TargetFrameworks>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<DebugType>Embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SkiaSharp" Version="2.88.6" />
Expand Down

0 comments on commit 7622ed9

Please sign in to comment.