From 902bcebddc84fde568a2b115234c254844f1089f Mon Sep 17 00:00:00 2001
From: Ben Parsons <9ParsonsB@users.noreply.github.com>
Date: Tue, 25 Jul 2023 03:03:01 +1000
Subject: [PATCH] Include snupkg in release & Enable SourceLink (#175)
Fixes #143
---
.github/workflows/build.yml | 4 ++--
Raylib-cs/Raylib-cs.csproj | 4 ++++
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index a9406ea..40ab79a 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -175,13 +175,13 @@ jobs:
- name: Upload NuGet Package As Artifact
uses: actions/upload-artifact@v3
with:
- path: Raylib-cs/bin/Release/Raylib-cs.${{ needs.prepare.outputs.pkgversion }}.nupkg
+ path: Raylib-cs/bin/Release/Raylib-cs.${{ needs.prepare.outputs.pkgversion }}.*pkg
- name: Upload NuGet Package As Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
- files: Raylib-cs/bin/Release/Raylib-cs.${{ needs.prepare.outputs.pkgversion }}.nupkg
+ files: Raylib-cs/bin/Release/Raylib-cs.${{ needs.prepare.outputs.pkgversion }}.*pkg
- name: Publish to NuGet
if: startsWith(github.ref, 'refs/tags/')
diff --git a/Raylib-cs/Raylib-cs.csproj b/Raylib-cs/Raylib-cs.csproj
index ccedcb1..3e1039b 100644
--- a/Raylib-cs/Raylib-cs.csproj
+++ b/Raylib-cs/Raylib-cs.csproj
@@ -16,6 +16,8 @@