Don't use artifacts for internal builds

This commit is contained in:
Ali 2019-11-04 03:09:05 +04:00
parent f358d75a4f
commit ebc72eab30
2 changed files with 4 additions and 7 deletions

View File

@ -17,12 +17,9 @@ internal:
- tags
script:
- bash buildbox/build-telegram.sh hockeyapp
- bash buildbox/deploy-telegram.sh hockeyapp
environment:
name: internal
artifacts:
paths:
- build/artifacts
expire_in: 1 week
beta_testflight:
tags:
@ -44,7 +41,7 @@ beta_testflight:
deploy_internal:
tags:
- ios_internal
stage: deploy
stage: deploy_unused
only:
- master
except:

View File

@ -60,6 +60,6 @@ lane :build_for_appstore do |options|
)
end
if File.exists?("buildbox/transient-data/telegram-ios-shared/fastlane/Fastfile")
import "buildbox/transient-data/telegram-ios-shared/fastlane/Fastfile"
if File.exists?("../buildbox/transient-data/telegram-ios-shared/fastlane/Fastfile")
import "../buildbox/transient-data/telegram-ios-shared/fastlane/Fastfile"
end