Skip to content
Snippets Groups Projects
Commit 5427b4dd authored by Soomin Lee's avatar Soomin Lee
Browse files

Fastfile: Fix set_changelog

parent e3133752
Branches 0.6.x
No related tags found
No related merge requests found
......@@ -91,9 +91,9 @@ private_lane :update_changelog do |options|
if (match = File.read('../Docs/NEWS').match(regex))
changelog = match.captures
set_changelog(app_identifier: 'org.videolan.vlc-ios',
changelog: changelog,
username: '*',
team: 'VideoLAN',
changelog: changelog.first.strip,
team_name: 'VideoLAN',
platform: platform == 'tvOS' ? 'appletvos' : 'ios')
else
puts("⚠️ Changelog not found for: #{platform} [#{version}]")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment