Skip to content

Commit

Permalink
Merge pull request #414 from geostyler/fix-assets
Browse files Browse the repository at this point in the history
Update the binary names and assets
  • Loading branch information
KaiVolland authored Nov 7, 2024
2 parents 54758ad + f84d295 commit efd32ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
]
}
]
Expand Down
2 changes: 1 addition & 1 deletion package-binaries.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down

0 comments on commit efd32ae

Please sign in to comment.