Skip to content

Commit

Permalink
fix: move binaries from repo to release assets (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
jansule committed May 31, 2023
1 parent 143b5a1 commit 2a794dd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,20 @@
"@semantic-release/git",
{
"assets": [
"./binaries/geostyler-cli-linux.zip", "./binaries/geostyler-cli-macos.zip", "./binaries/geostyler-cli-win.exe.zip"
"CHANGELOG.md", "package.json", "package-lock.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
[
"@semantic-release/github",
{
"assets": [
{"path": "./binaries/geostyler-cli-linux.zip", "label": "Linux executable"},
{"path": "./binaries/geostyler-cli-macos.zip", "label": "MacOS executable"},
{"path": "./binaries/geostyler-cli-win.exe.zip", "label": "Windows executable"}
]
}
]
]
}
Binary file removed binaries/geostyler-cli-linux.zip
Binary file not shown.
Binary file removed binaries/geostyler-cli-macos.zip
Binary file not shown.
Binary file removed binaries/geostyler-cli-win.exe.zip
Binary file not shown.

0 comments on commit 2a794dd

Please sign in to comment.