Skip to content

Commit 68ae3e1

Browse files
authored
ci: Fix auto-release (#1841)
1 parent 7815807 commit 68ae3e1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Rakefile

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ require_relative 'Vendor/xctoolchain/Scripts/xctask/build_task'
1212
SCRIPT_PATH = File.expand_path(File.dirname(__FILE__))
1313
starters_path = File.join(SCRIPT_PATH, 'ParseStarterProject')
1414

15-
ios_version = ENV.fetch('IOS_VERSION')
16-
ios_device_model = ENV.fetch('IOS_DEVICE_MODEL')
17-
tvos_version = ENV.fetch('TV_OS_VERSION')
18-
tv_device_model = ENV.fetch('TV_DEVICE_MODEL')
19-
watchos_version = ENV.fetch('WATCH_OS_VERSION')
20-
watch_device_model = ENV.fetch('WATCH_DEVICE_MODEL')
15+
ios_version = ENV.fetch('IOS_VERSION', '')
16+
ios_device_model = ENV.fetch('IOS_DEVICE_MODEL', '')
17+
tvos_version = ENV.fetch('TV_OS_VERSION', '')
18+
tv_device_model = ENV.fetch('TV_DEVICE_MODEL', '')
19+
watchos_version = ENV.fetch('WATCH_OS_VERSION', '')
20+
watch_device_model = ENV.fetch('WATCH_DEVICE_MODEL', '')
2121

2222
puts "IOS_VERSION: #{ios_version}"
2323
puts "IOS_DEVICE_MODEL: #{ios_device_model}"

0 commit comments

Comments
 (0)