diff --git a/.releaserc b/.releaserc index 16b72c3..4b85af1 100644 --- a/.releaserc +++ b/.releaserc @@ -37,9 +37,9 @@ "@semantic-release/github", { "assets": [ - {"path": "./binaries/geostyler-cli-linux.zip", "label": "GeoStyler CLI Linux executable"}, - {"path": "./binaries/geostyler-cli-macos.zip", "label": "GeoStyler CLI MacOS executable"}, - {"path": "./binaries/geostyler-cli-win.exe.zip", "label": "GeoStyler CLI Windows executable"} + {"path": "./binaries/geostyler-linux.zip", "label": "GeoStyler CLI Linux executable"}, + {"path": "./binaries/geostyler-macos.zip", "label": "GeoStyler CLI MacOS executable"}, + {"path": "./binaries/geostyler-win.exe.zip", "label": "GeoStyler CLI Windows executable"} ] } ] diff --git a/package-binaries.js b/package-binaries.js index 5b40f19..5e94bcd 100644 --- a/package-binaries.js +++ b/package-binaries.js @@ -6,7 +6,7 @@ const AdmZip = require('adm-zip'); // Define the folder path and the list of file names const folderPath = './binaries/'; -const fileNames = ['geostyler-cli-win.exe', 'geostyler-cli-linux', 'geostyler-cli-macos']; +const fileNames = ['geostyler-win.exe', 'geostyler-linux', 'geostyler-macos']; function renameFile(oldPath, newPath) { return new Promise((resolve, reject) => {