saveManifest method
Saves the current manifest
to this storage implementation.
Implementation
@override
bool saveManifest(ReleaseManifest manifest) {
var file = currentManifestFile;
file.writeAsStringSync(manifest.toJsonEncoded());
return true;
}