Skip to content

Commit

Permalink
Merge pull request #1342 from snyk/chore/fix-binary-naming
Browse files Browse the repository at this point in the history
chore(build): don’t rely on dynamic names from pkg
  • Loading branch information
JackuB committed Aug 17, 2020
2 parents d32c8ab + 3c9687f commit 07c3a69
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .releaserc
Expand Up @@ -7,9 +7,24 @@
"cmd": "echo '' > dist/STANDALONE"
},
{
"//": "build the alpine, macos, linux and windows binaries",
"//": "build the Alpine executable",
"path": "@semantic-release/exec",
"cmd": "pkg . -t node14-alpine-x64,node12-linux-x64,node12-macos-x64,node12-win-x64"
"cmd": "pkg . -t node14-alpine-x64 -o snyk-alpine"
},
{
"//": "build the Linux executable",
"path": "@semantic-release/exec",
"cmd": "pkg . -t node12-linux-x64 -o snyk-linux"
},
{
"//": "build the macOS executable",
"path": "@semantic-release/exec",
"cmd": "pkg . -t node12-macos-x64 -o snyk-macos"
},
{
"//": "build the windows executable",
"path": "@semantic-release/exec",
"cmd": "pkg . -t node12-win-x64 -o snyk-win.exe"
},
{
"//": "build docker package",
Expand Down

0 comments on commit 07c3a69

Please sign in to comment.