From d5d8c4aa005de3f42a7d5c71d987fbd1546bf9f2 Mon Sep 17 00:00:00 2001 From: John Wostenberg Date: Sat, 27 Jun 2026 15:44:46 -0500 Subject: [PATCH 1/2] Enable SourceLink --- Directory.Build.props | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Directory.Build.props b/Directory.Build.props index 0454dcbc5..b35d31038 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -13,6 +13,8 @@ logo.png README.md f# FSharp Applicative Monad MonadTransformer Arrow Overloading + true + snupkg 1.9.1 $(VersionPrefix)-$(VersionSuffix) From e8304ec3656ccde2b656fda05ca547e1d36c7163 Mon Sep 17 00:00:00 2001 From: John Wostenberg Date: Sat, 27 Jun 2026 16:07:08 -0500 Subject: [PATCH 2/2] Push .snupkg files on deployment --- .github/workflows/release-package.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-package.yml b/.github/workflows/release-package.yml index 5f3b0745b..69ef4ac8c 100644 --- a/.github/workflows/release-package.yml +++ b/.github/workflows/release-package.yml @@ -31,12 +31,14 @@ jobs: uses: actions/upload-artifact@v4 with: name: nupkg-${{ matrix.runs-on }} - path: ./bin/nupkg/*.nupkg + path: | + ./bin/nupkg/*.nupkg + ./bin/nupkg/*.snupkg - name: Push to GitHub Feed shell: bash run: | - for f in ./bin/nupkg/*.nupkg + for f in ./bin/nupkg/*.nupkg ./bin/nupkg/*.snupkg do - echo $f - dotnet nuget push $f -k ${{ secrets.GITHUB_TOKEN }} -s https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json + echo "$f" + dotnet nuget push "$f" -k ${{ secrets.GITHUB_TOKEN }} -s https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json done \ No newline at end of file