Skip to content

Commit

Permalink
fix: prevent duplicate release file names
Browse files Browse the repository at this point in the history
  • Loading branch information
hello-adam committed Feb 2, 2021
1 parent db61841 commit 5f5ec94
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,23 @@
"assets": [
{
"path": "hobbits/centos7_gcc48_release/hobbits*.tar.xz",
"label": "Hobbits (64-bit CentOS 7 GCC 4.8)"
"label": "Hobbits (64-bit CentOS 7 GCC 4.8)",
"name": "hobbits-${nextRelease.version}-gcc48.txz"
},
{
"path": "hobbits/ubuntu18_gcc7_release/hobbits*.tar.xz",
"label": "Hobbits (64-bit Ubuntu 18.04 GCC 7)"
"label": "Hobbits (64-bit Ubuntu 18.04 GCC 7)",
"name": "hobbits-${nextRelease.version}-gcc7.txz"
},
{
"path": "hobbits/windows_release/hobbits*.zip",
"label": "Hobbits (64-bit Windows 2016 msvc2017)"
"label": "Hobbits (64-bit Windows 2016 msvc2017)",
"name": "hobbits-${nextRelease.version}-mac.txz"
},
{
"path": "hobbits/mac_release/hobbits*.tar.xz",
"label": "Hobbits (64-bit Mac OSX 10.14)"
"label": "Hobbits (64-bit Mac OSX 10.14)",
"name": "hobbits-${nextRelease.version}-win.txz"
}
]
}
Expand Down

0 comments on commit 5f5ec94

Please sign in to comment.