Skip to content

Commit 81fec3a

Browse files
committed
Fix binary output filename to awf-linux-x64
1 parent 6267e8d commit 81fec3a

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,16 +85,16 @@ jobs:
8585
mkdir -p release
8686
8787
# Create standalone executable for Linux
88-
# pkg automatically names it awf-linux-x64 based on target
8988
pkg . \
9089
--targets node18-linux-x64 \
91-
--output release/awf
90+
--output release/awf-linux-x64
9291
9392
# Verify the binary was created
9493
echo "=== Contents of release directory ==="
9594
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!"
95+
echo "=== Verifying binary ==="
96+
test -f release/awf-linux-x64 && echo "✓ Binary exists at release/awf-linux-x64" || echo "✗ Binary NOT found!"
97+
file release/awf-linux-x64
9898
9999
- name: Create tarball for npm package
100100
run: |

0 commit comments

Comments
 (0)