We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d544ddf commit 0460132Copy full SHA for 0460132
fastlane/Fastfile
@@ -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