Skip to content

Commit 77556b0

Browse files
committed
Fix pkg binary creation: remove conflicting outputPath
1 parent b799b74 commit 77556b0

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,10 @@ jobs:
9191
--output release/awf
9292
9393
# Verify the binary was created
94+
echo "=== Contents of release directory ==="
9495
ls -lh release/
96+
echo "=== Checking if awf-linux-x64 exists ==="
97+
test -f release/awf-linux-x64 && echo "✓ Binary exists!" || echo "✗ Binary NOT found!"
9598
9699
- name: Create tarball for npm package
97100
run: |

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@
5757
],
5858
"targets": [
5959
"node18-linux-x64"
60-
],
61-
"outputPath": "release"
60+
]
6261
}
6362
}

0 commit comments

Comments
 (0)