Remove spaces from windows installer name
Spaces in the file name get escaped to %20. Then the percent sign gets escaped again on the way to s3 upload, such that the object name on s3 ends up as %2520. To fix this, we can simply omit spaces from our artifact names. // FREEBIE
This commit is contained in:
parent
5650748961
commit
81a40bb548
1 changed files with 1 additions and 0 deletions
|
@ -51,6 +51,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"win": {
|
"win": {
|
||||||
|
"artifactName": "${productName}-Setup_${version}.${ext}",
|
||||||
"publish": {
|
"publish": {
|
||||||
"provider": "s3",
|
"provider": "s3",
|
||||||
"region": "us-east-1",
|
"region": "us-east-1",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue