From e35ae5f0a4552ee9224a8821396d7250ee331f50 Mon Sep 17 00:00:00 2001 From: DerekGn Date: Wed, 22 Jan 2025 09:51:29 +0000 Subject: [PATCH] Update cd.yml Updated a release to include nuget packages --- .github/workflows/cd.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 82350c9..c4f4742 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -23,3 +23,9 @@ jobs: run: dotnet build --configuration Release --no-restore - name: Pack run: dotnet pack --configuration Release --no-restore + - name: Publish + uses: softprops/action-gh-release@v2.0.8 + with: + files: "*.nupkg" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}