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 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)