Skip to content

Commit

Permalink
Removed the fastlane github release.
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulWoitaschek committed Jan 31, 2020
1 parent 9126320 commit 7df18ce
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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

0 comments on commit 7df18ce

Please sign in to comment.