getArtifactPath method
Get the output path, where the artifact should be placed.
Implementation
String getArtifactPath({
required String platform,
required String extension,
CpuArchitecture? arch,
}) {
return '$releaseFolder/$appName-$appVersion-$platform${arch != null ? '-${arch.name}' : ''}.$extension';
}