is it possible to change the output binary name? i...
# compose-desktop
a
is it possible to change the output binary name? it includes the version number in the file name, but I'd like to just output the same filename every time, regardless of the changing version.
a
Do you mean the packaged file (dmg, msi etc.)?
a
@Alexander Maryanovsky exactly
a
Can’t you just rename the file after it’s created?
a
i could, thats one option. I'm doing this in a github action for creating a release, so I'll need to figure out how to rename a variably named file, since the version number will be changing each time
a
I meant do it in the gradle task that’s building the file.
e.g. write a task that depends on the “packageDmg” task, and rename the file once it’s done.