Skip to content
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
XCODE_PROJ = "DevLog.xcodeproj"
APP_IDENTIFIER = "opfic.DevLog"
TARGET_NAME = "DevLog"
PROJECT_ROOT = File.expand_path("..", __dir__)

default_platform(:ios)

Expand All @@ -9,7 +10,7 @@ platform :ios do
require "spaceship"

versionNumber = options[:version]
ascKeyPath = File.expand_path(ENV["ASC_KEY_PATH"], Dir.pwd)
ascKeyPath = File.expand_path(ENV["ASC_KEY_PATH"], PROJECT_ROOT)

Spaceship::ConnectAPI.token = Spaceship::ConnectAPI::Token.create(
key_id: ENV["ASC_KEY_ID"],
Expand Down
Loading