We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6267e8d commit 81fec3aCopy full SHA for 81fec3a
1 file changed
.github/workflows/release.yml
@@ -85,16 +85,16 @@ jobs:
85
mkdir -p release
86
87
# Create standalone executable for Linux
88
- # pkg automatically names it awf-linux-x64 based on target
89
pkg . \
90
--targets node18-linux-x64 \
91
- --output release/awf
+ --output release/awf-linux-x64
92
93
# Verify the binary was created
94
echo "=== Contents of release directory ==="
95
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!"
+ echo "=== Verifying binary ==="
+ test -f release/awf-linux-x64 && echo "✓ Binary exists at release/awf-linux-x64" || echo "✗ Binary NOT found!"
+ file release/awf-linux-x64
98
99
- name: Create tarball for npm package
100
run: |
0 commit comments