uploadToGitHub static method

Future<void> uploadToGitHub(
  1. String artifactPath
)

Implementation

static Future<void> uploadToGitHub(String artifactPath) async {
  FlutterReleaseXHelpers.showLoading('☁️ Uploading APK to GitHub...');
  await FlutterReleaseXGitHubUploaderService.uploadToGitHub(artifactPath);
  FlutterReleaseXHelpers.stopLoading();
}