diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index fca3c43..b4e4f6b 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -94,7 +94,7 @@ jobs:
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
with:
name: ${{ matrix.platform }}-v${{ needs.version.outputs.version }}
- path: artifacts/*.*
+ path: artifacts/**
release:
needs: [ version , build ]
@@ -110,16 +110,17 @@ jobs:
uses: actions/download-artifact@v4
with:
path: artifacts
+ merge-multiple: true
- name: create release
uses: softprops/action-gh-release@v1
with:
tag_name: v${{ needs.version.outputs.version }}
name: release v${{ needs.version.outputs.version }}
- generate_releases: true
+ generate_release_notes: true
draft: false
prerelease: true
- files: artifacts/*.*
+ files: artifacts/**
- name: publish to NuGet
continue-on-error: true
diff --git a/BinaryNinja.csproj b/BinaryNinja.csproj
index 5025a1e..096d5bf 100644
--- a/BinaryNinja.csproj
+++ b/BinaryNinja.csproj
@@ -27,11 +27,12 @@
BinaryNinja
binaryninja bn bnapi bindings
- https://github.com/tinysec
+ tinysec
MIT
https://github.com/tinysec/BinaryNinja
https://github.com/tinysec/BinaryNinja.git
git
+ README.md
@@ -39,4 +40,16 @@
true
true
+
+
+
+ true
+ \
+
+
+
+ true
+ \
+
+
diff --git a/README.md b/README.md
index b1f92f8..8351229 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,5 @@
# BinaryNinja C# Bindings (Typed, Safe, Native AOT Ready)
-[](https://github.com/tinysec/binaryninja/actions)
[](https://www.nuget.org/packages/BinaryNinja)


@@ -53,7 +52,7 @@ class Program
throw new Exception("load fail");
}
- foreach(Function? function in view.Functions)
+ foreach(Function function in view.Functions)
{
Console.WriteLine(function.RawName);
}