Skip to content

Commit

Permalink
Merge pull request #1770 from snyk/refactor/change-node-version-binar…
Browse files Browse the repository at this point in the history
…y-for-release-temp

Fix: target different Node versions for binaries for pkg-fetch
  • Loading branch information
ipapast authored Mar 26, 2021
2 parents b7f903e + 1ce0d11 commit 9290478
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions release-scripts/make-binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ mkdir binary-releases
# adds a file to identify a build as a standalone binary
echo '' >dist/STANDALONE

npx pkg . -t node14-alpine-x64 -o binary-releases/snyk-alpine
npx pkg . -t node12-linux-x64 -o binary-releases/snyk-linux
npx pkg . -t node12-macos-x64 -o binary-releases/snyk-macos
npx pkg . -t node12-win-x64 -o binary-releases/snyk-win-unsigned.exe
npx pkg . -t node14.4.0-alpine-x64 -o binary-releases/snyk-alpine
npx pkg . -t node12.18.1-linux-x64 -o binary-releases/snyk-linux
npx pkg . -t node12.18.1-macos-x64 -o binary-releases/snyk-macos
npx pkg . -t node12.18.1-win-x64 -o binary-releases/snyk-win-unsigned.exe

# build docker package
./release-scripts/docker-desktop-release.sh
Expand Down

0 comments on commit 9290478

Please sign in to comment.