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 a775bbc commit 543e896Copy full SHA for 543e896
fastlane/lib/util.rb
@@ -2,12 +2,12 @@
2
3
# should we build and release to the nightly channel?
4
def should_nightly?
5
- cron? || circleci_nightly_workflow?
+ travis_cron? || circleci_nightly?
6
end
7
8
# are we running under the circleci nightly workflow?
9
-def circleci_nightly_workflow?
10
- ENV['CIRCLE_WORKFLOW_ID'] == '1d9cac43-c1bb-45b5-8f28-610d2d38db71'
+def circle_nightly?
+ ENV['IS_NIGHTLY'] == '1'
11
12
13
# should we build and release to the beta channel?
@@ -21,7 +21,7 @@ def has_api_keys?
21
22
23
# was this build initiated by cron?
24
-def cron?
+def travis_cron?
25
ENV['TRAVIS_EVENT_TYPE'] == 'cron'
26
27
0 commit comments