mirror of
https://github.com/ppy/osu.git
synced 2025-01-07 22:16:10 +08:00
Add full upload support
This commit is contained in:
parent
7bc4b4f981
commit
9543c27784
@ -4,16 +4,21 @@ platform :android do
|
|||||||
desc 'Deploy to play store'
|
desc 'Deploy to play store'
|
||||||
lane :beta do |options|
|
lane :beta do |options|
|
||||||
|
|
||||||
options[:solution_path] = 'osu.Android.sln'
|
|
||||||
|
|
||||||
# update csproj version
|
# update csproj version
|
||||||
update_version(options)
|
update_version(
|
||||||
|
solution_path: 'osu.Android.sln',
|
||||||
|
version: options[:version],
|
||||||
|
build: options[:build],
|
||||||
|
)
|
||||||
|
|
||||||
build()
|
build()
|
||||||
|
|
||||||
client = HTTPClient.new
|
supply(
|
||||||
changelog = client.get_content 'https://gist.githubusercontent.com/peppy/ab89c29dcc0dce95f39eb218e8fad197/raw'
|
apk: './osu.Android/bin/Release/sh.ppy.osulazer-Signed.apk',
|
||||||
changelog.gsub!('$BUILD_ID', options[:build])
|
package_name: 'sh.ppy.osulazer',
|
||||||
|
track: 'alpha', # upload to alpha, we can promote it later
|
||||||
|
json_key: options[:json_key],
|
||||||
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
desc 'Compile the project'
|
desc 'Compile the project'
|
||||||
|
Loading…
Reference in New Issue
Block a user