diff --git a/.gitignore b/.gitignore index 350af6c..cb1fe9f 100644 --- a/.gitignore +++ b/.gitignore @@ -105,3 +105,6 @@ dist # Packaged binary files bin + +# Mac ds_store file +.DS_Store diff --git a/.releaserc b/.releaserc index cb82fc3..d63ba7d 100644 --- a/.releaserc +++ b/.releaserc @@ -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"} diff --git a/Makefile b/Makefile index 0c7ebf3..417b680 100644 --- a/Makefile +++ b/Makefile @@ -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: