Skip to content

Commit c4a911c

Browse files
authored
Merge pull request #6870 from StoDevX/hawken/fix-fastlane
allow fastlane to deploy on manual workflow
2 parents 5084b5d + cf070c7 commit c4a911c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fastlane/lib/util.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ def should_nightly?
55

66
# was this build triggered by a schedule event on GH?
77
def github_scheduled?
8-
ENV['GITHUB_EVENT_NAME'] == 'schedule'
8+
ENV['GITHUB_EVENT_NAME'] == 'schedule' || ENV['GITHUB_EVENT_NAME'] == 'workflow_dispatch'
99
end
1010

1111
# was this build initiated by cron?

0 commit comments

Comments
 (0)