diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 46d1d3320b..b2d0ab730f 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -1,8 +1,10 @@ +# frozen_string_literal: true + default_platform(:android) platform :android do - ARTIFACT_FOLDER = 'artifacts'.freeze - RELEASE_FOLDER = 'releases'.freeze + ARTIFACT_FOLDER = 'artifacts' + RELEASE_FOLDER = 'releases' lane :ci do build_apks @@ -58,14 +60,5 @@ platform :android do target_path: folder, artifacts: ['app/build/outputs/**/release/*.apk'] ) - github_release = set_github_release( - repository_name: "PaulWoitaschek/Voice", - api_token: ENV["GITHUB_TOKEN"], - tag_name: app_version, - name: "", - description: "", - commitish: "master", - upload_assets: [folder + '/' + 'app-proprietary-release.apk'] - ) end end