Skip to content

Commit

Permalink
fix(ci): 🐛 Add different names to binary files to resolve the release…
Browse files Browse the repository at this point in the history
… conflict
  • Loading branch information
SpiralOutDotEu committed Nov 3, 2023
1 parent af06558 commit 12d2cf3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ module.exports = {
}],
["@semantic-release/github", {
"assets": [
{"path": "target/x86_64-unknown-linux-gnu/release/zk_whitelist", "label": "Linux binary"},
{"path": "target/x86_64-pc-windows-gnu/release/zk_whitelist.exe", "label": "Windows binary"},
{"path": "target/x86_64-apple-darwin/release/zk_whitelist", "label": "macOS binary"}
{"path": "target/x86_64-unknown-linux-gnu/release/zk_whitelist", "name": "zk_whitelist", "label": "Linux binary"},
{"path": "target/x86_64-pc-windows-gnu/release/zk_whitelist.exe", "name": "zk_whitelist_win", "label": "Windows binary"},
{"path": "target/x86_64-apple-darwin/release/zk_whitelist", "name": "zk_whitelist_mac","label": "macOS binary"}
]
}],
["@semantic-release/git", {
Expand Down

0 comments on commit 12d2cf3

Please sign in to comment.