Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 60d5cbac authored by Tobias Kaminsky's avatar Tobias Kaminsky Committed by GitHub
Browse files

Merge pull request #2853 from nextcloud/alpha

fastlane: upload to alpha track
parents c93a7a0c 4d2d173f
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -152,4 +152,17 @@ desc "Build app bundle"
		)
	end

    desc "Upload Alpha version to play store"
    lane :uploadAlphaToPlayStore do |options|
        upload_to_play_store(
            skip_upload_images: true,
            skip_upload_aab: true,
            skip_upload_changelogs: true,
            skip_upload_metadata: true,
            skip_upload_screenshots: true,
            track: 'alpha',
            apk: "/home/androiddaily/apks-notes/android-notes-" + options[:version] + ".apk",
        )
    end

end