getArtifactPath method
Get the output path, where the artifact should be placed.
Implementation
String getArtifactPath({required String extension}) {
final packageName =
'$appName-$appVersion-${Platform.operatingSystem}-$_arch';
return '$releaseFolder/$packageName.$extension';
}