Skip to content

Commit

Permalink
ci: Fix auto-release (#1841)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrezza authored Jan 28, 2025
1 parent 7815807 commit 68ae3e1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ require_relative 'Vendor/xctoolchain/Scripts/xctask/build_task'
SCRIPT_PATH = File.expand_path(File.dirname(__FILE__))
starters_path = File.join(SCRIPT_PATH, 'ParseStarterProject')

ios_version = ENV.fetch('IOS_VERSION')
ios_device_model = ENV.fetch('IOS_DEVICE_MODEL')
tvos_version = ENV.fetch('TV_OS_VERSION')
tv_device_model = ENV.fetch('TV_DEVICE_MODEL')
watchos_version = ENV.fetch('WATCH_OS_VERSION')
watch_device_model = ENV.fetch('WATCH_DEVICE_MODEL')
ios_version = ENV.fetch('IOS_VERSION', '')
ios_device_model = ENV.fetch('IOS_DEVICE_MODEL', '')
tvos_version = ENV.fetch('TV_OS_VERSION', '')
tv_device_model = ENV.fetch('TV_DEVICE_MODEL', '')
watchos_version = ENV.fetch('WATCH_OS_VERSION', '')
watch_device_model = ENV.fetch('WATCH_DEVICE_MODEL', '')

puts "IOS_VERSION: #{ios_version}"
puts "IOS_DEVICE_MODEL: #{ios_device_model}"
Expand Down

0 comments on commit 68ae3e1

Please sign in to comment.