Skip to content

Commit

Permalink
Fix release name and playstore lane
Browse files Browse the repository at this point in the history
  • Loading branch information
lneugebauer committed Aug 13, 2023
1 parent 4dad435 commit 2d79082
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ platform :android do
set_github_release(
repository_name: "lneugebauer/nextcloud-cookbook",
api_token: ENV["GITHUB_TOKEN"],
name: "v" + version_name + version_code,
tag_name: "v" + version_name + version_code,
name: "v" + version_name + "+" + version_code,
tag_name: "v" + version_name + "+" + version_code,
is_prerelease: true,
description: (File.read("metadata/android/en-US/changelogs/" + version_code + ".txt") rescue "No changelog provided"),
commitish: "main",
Expand All @@ -80,7 +80,8 @@ platform :android do
desc "Deploy to GPS"
lane :playstore do
upload_to_play_store(
track: "internal"
track: "internal",
skip_upload_apk: false
)
end

Expand Down

0 comments on commit 2d79082

Please sign in to comment.