Skip to content

Commit

Permalink
fix: move binaries from repo to release assets
Browse files Browse the repository at this point in the history
  • Loading branch information
jansule committed May 31, 2023
1 parent 143b5a1 commit e13905a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,24 @@
],
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
[
"@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 e13905a

Please sign in to comment.