Skip to content

Commit

Permalink
fix: revert file name for linux in github release (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
weixu365 authored Jun 14, 2023
1 parent ef67895 commit 33354b0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,6 @@ dist

# Packaged binary files
bin

# Mac ds_store file
.DS_Store
2 changes: 1 addition & 1 deletion .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@semantic-release/github",
{
"assets": [
{"path": "bin/aws-emr-runner-linuxstatic.bz2"},
{"path": "bin/aws-emr-runner-linux.bz2"},
{"path": "bin/aws-emr-runner-macos.bz2"},
{"path": "bin/aws-emr-runner-macos-arm64.bz2"},
{"path": "bin/aws-emr-runner-win.exe.bz2"}
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ package:
mkdir -p bin && rm -rf bin/*
npx -y pkg -t node16-linuxstatic-x64,node16-macos-x64,node16-win-x64 -c package.json --out-path bin src/index.js
npx -y pkg -t node16-macos-arm64 --no-bytecode --public-packages "*" --public -c package.json --o bin/aws-emr-runner-macos-arm64 src/index.js
mv bin/aws-emr-runner-linuxstatic bin/aws-emr-runner-linux
bzip2 -k bin/*

release:
Expand Down

0 comments on commit 33354b0

Please sign in to comment.