Skip to content

Commit

Permalink
chore: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Oct 18, 2024
1 parent 7db4449 commit aea1b95
Show file tree
Hide file tree
Showing 4 changed files with 1,238 additions and 1,237 deletions.
1 change: 1 addition & 0 deletions .env.ci
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
APPL_ITC_TEAM_ID=1469488

PROJECT_NAME=nsdocumentscanner
SENTRY_PROJECT=documentscanner
SENTRY_PREFIX=app:///
SENTRY_ORG=akylas
Expand Down
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ end
fastlane_version '2.135.2'
opt_out_usage

$ios_scheme = File.basename(File.expand_path('..')).gsub(/[^a-zA-Z0-9]/, "")
$ios_scheme = ENV["PROJECT_NAME"] || File.basename(File.expand_path('..')).gsub(/[^a-zA-Z0-9]/, "")
sentry_cli_path = '../node_modules/.bin/sentry-cli'

i18nEnJSON = JSON.parse(File.read('../app/i18n/en.json'))
Expand Down
2 changes: 1 addition & 1 deletion nativescript.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = {
buildPath: process.env['APP_BUILD_PATH'] || 'build/documentscanner',
webpackPackageName: '@akylas/nativescript-webpack',
webpackConfigPath: 'app.webpack.config.js',
projectName: 'nsdocumentscanner',
projectName: process.env['PROJECT_NAME'],
appPath: 'app',
forceLog: loggingEnabled,
profiling: timelineEnabled ? 'timeline' : undefined,
Expand Down
Loading

0 comments on commit aea1b95

Please sign in to comment.