You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
your plugin is wonderfully working. I have one question. Is it possible to have one single overview page where I can see all versions on s3 with its corresponding Changelog.md files and a user can select which one he would like to download?
The text was updated successfully, but these errors were encountered:
@WiesBen we've done something like this for one of our enterprise apps, the code for this is not in a place where we can share cuz it's intertwined with other things we're doing there but the logic goes something like this:
When uploading a build, append the necessary info to a JSON file (say versions.json) and push that to S3. You'll have to read it first, add the new version to the list of versions and write the file back so it includes the new version. You can pull the necessary info from the lane variables (linked to the docs on fastlane site cuz README in this repo does not include this info, another PR idea 😄)
Modify the HTML template that shows download links so that it reads the versions.json file first, loop over the array of versions and generate the right download links (s3_ios_html_template.erb)
Hi there,
your plugin is wonderfully working. I have one question. Is it possible to have one single overview page where I can see all versions on s3 with its corresponding Changelog.md files and a user can select which one he would like to download?
The text was updated successfully, but these errors were encountered: