commit cab5d4ccf9c861d9d18e6f7441730469eb2c3383
parent 8ef925de672f48ad657e06e657531eff2148b659
Author: MTRNord <mtrnord1@gmail.com>
Date: Sun, 1 Oct 2023 18:54:34 +0200
Try debugging the weirdness with publishing
Diffstat:
2 files changed, 15 insertions(+), 8 deletions(-)
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
@@ -232,10 +232,13 @@ jobs:
uses: actions/download-artifact@v3
with:
path: artifacts
+ - name: List packages
+ run: ls -laR ./
+ shell: bash
- name: Move artifacts
run: yarn artifacts
- name: List packages
- run: ls -R ./npm
+ run: ls -laR ./npm
shell: bash
- name: Publish
run: |
diff --git a/package.json b/package.json
@@ -5,12 +5,15 @@
"types": "index.d.ts",
"napi": {
"name": "node-yara-rs",
- "targets": [
- "x86_64-apple-darwin",
- "aarch64-apple-darwin",
- "x86_64-unknown-linux-gnu",
- "aarch64-unknown-linux-gnu"
- ]
+ "triples": {
+ "defaults": false,
+ "additional": [
+ "aarch64-apple-darwin",
+ "aarch64-unknown-linux-gnu",
+ "x86_64-apple-darwin",
+ "x86_64-unknown-linux-gnu"
+ ]
+ }
},
"license": "Apache-2.0",
"devDependencies": {
@@ -35,4 +38,4 @@
},
"packageManager": "yarn@3.6.3",
"repository": "https://github.com/MTRNord/node-yara-rs.git"
-}
+}
+\ No newline at end of file