Skip to content

Commit 0460132

Browse files
committed
Fastlane file added
1 parent d544ddf commit 0460132

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

fastlane/Fastfile

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# This file contains the fastlane.tools configuration
2+
# You can find the documentation at https://docs.fastlane.tools
3+
#
4+
# For a list of all available actions, check out
5+
#
6+
# https://docs.fastlane.tools/actions
7+
#
8+
# For a list of all available plugins, check out
9+
#
10+
# https://docs.fastlane.tools/plugins/available-plugins
11+
#
12+
13+
# Uncomment the line if you want fastlane to automatically update itself
14+
# update_fastlane
15+
16+
default_platform(:android)
17+
18+
platform :android do
19+
20+
desc "Deploy libraries to Nexus."
21+
lane :deployNexus do
22+
gradle(task: "publishToSonatype closeAndReleaseSonatypeStagingRepository")
23+
end
24+
25+
end

0 commit comments

Comments
 (0)