Skip to content

Commit 6cf8493

Browse files
authored
ci: fix (#2)
fix ci
1 parent 0f22d9c commit 6cf8493

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
ls -lh artifacts
8585
8686
- name: upload artifacts
87-
uses: actions/upload-artifact@v3
87+
uses: actions/upload-artifact@v4
8888
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
8989
with:
9090
name: ${{ matrix.platform }}-v${{ needs.version.outputs.version }}
@@ -116,7 +116,7 @@ jobs:
116116
files: artifacts/*.*
117117

118118
- name: publish to NuGet
119-
if: secrets.NUGET_TOKEN != ''
119+
continue-on-error: true
120120
env:
121121
NUGET_AUTH_TOKEN: ${{ secrets.NUGET_TOKEN }}
122122
run: |

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# BinaryNinja C# Bindings (Typed, Safe, Native AOT Ready)
22

33
[![Build](https://img.shields.io/github/actions/workflow/status/tinysec/binaryninja/ci.yml?branch=master)](https://github.com/tinysec/binaryninja/actions)
4-
[![NuGet](https://img.shields.io/nuget/v/BinaryNinjaBindings.svg)](https://www.nuget.org/packages/BinaryNinjaBindings)
4+
[![NuGet](https://img.shields.io/nuget/v/BinaryNinja.svg)](https://www.nuget.org/packages/BinaryNinja)
55
![License](https://img.shields.io/github/license/tinysec/binaryninja)
66
![Platforms](https://img.shields.io/badge/platforms-windows%20%7C%20linux-blue)
77
![.NET](https://img.shields.io/badge/.NET-%3E%3D%208.0-512BD4)
@@ -147,7 +147,7 @@ namespace Dummy
147147
## Troubleshooting
148148

149149
- DllNotFoundException / EntryPointNotFoundException
150-
- Ensure native libs are on PATH/LD_LIBRARY_PATH or set BINARYNINJA_BASE
150+
- Ensure set BINARYNINJA_BASE
151151
- On Native AOT, confirm your RID is correct and you published with PublishAot=true
152152
- AccessViolationException
153153
- Check lifetime: ensure using-statements dispose views/sessions before exit

0 commit comments

Comments
 (0)