Skip to content

Commit af62fba

Browse files
authored
fix: remove entry file from zip in publish.yaml
Removed entry file from zip creation in publish workflow.
1 parent 2fbbee5 commit af62fba

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

.github/workflows/publish.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,6 @@ jobs:
7878
zip_path = f"dist/reveng_binary_ninja_plugin_${{ matrix.package-name }}.zip"
7979
8080
with zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED) as zf:
81-
# Add the entry file to root
82-
zf.write("reai_toolkit_entry.py", "reai_toolkit_entry.py")
8381
8482
# Add all files from reai_toolkit/ to root of zip
8583
for root, dirs, files in os.walk("reai_toolkit"):
@@ -122,4 +120,4 @@ jobs:
122120
Extract into your Binary Ninja plugins folder.
123121
files: dist/**/*.zip
124122
env:
125-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
123+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)