Skip to content

Commit

Permalink
Merge pull request #46 from SpiralOutDotEu/fix/release-target-paths
Browse files Browse the repository at this point in the history
fix(ci): 🩹 Correct target path for win & macos releases
  • Loading branch information
SpiralOutDotEu committed Nov 3, 2023
2 parents d941e9b + 3f64863 commit ca55f05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ module.exports = {
["@semantic-release/github", {
"assets": [
{"path": "target/release/zk_whitelist", "label": "Linux binary"},
{"path": "target/release/zk_whitelist.exe", "label": "Windows binary"},
{"path": "target/release/zk_whitelist.dmg", "label": "macOS binary"}
{"path": "target/x86_64-pc-windows-gnu/release/zk_whitelist.exe", "label": "Windows binary"},
{"path": "target/x86_64-apple-darwin/release/zk_whitelist.dmg", "label": "macOS binary"}
]
}],
["@semantic-release/git", {
Expand Down

0 comments on commit ca55f05

Please sign in to comment.