Skip to content

Commit f443730

Browse files
committed
Fix pkg binary output filename in release workflow
1 parent 5692fa3 commit f443730

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,13 @@ jobs:
8585
mkdir -p release
8686
8787
# Create standalone executable for Linux
88+
# pkg automatically names it awf-linux-x64 based on target
8889
pkg . \
8990
--targets node18-linux-x64 \
9091
--output release/awf
9192
92-
# Rename output to include platform
93-
mv release/awf-linux release/awf-linux-x64
93+
# Verify the binary was created
94+
ls -lh release/
9495
9596
- name: Create tarball for npm package
9697
run: |

0 commit comments

Comments
 (0)