fastlane/lib/assets/Actions.md.erb in fastlane-2.101.1 vs fastlane/lib/assets/Actions.md.erb in fastlane-2.102.0
- old
+ new
@@ -30,13 +30,13 @@
- [Plugins](https://docs.fastlane.tools/plugins/available-plugins/)
<%- @categories.each do |category, actions| %>
# <%= category %>
-Action | Description
----|---
+Action | Description | Supported Platforms
+---|---|---
<%- actions.sort.to_h.each do |_number_of_launches, action| -%>
<%- link = "/actions/#{action.action_name}/" -%>
-<a href="<%= link %>"><%= action.action_name %></a> | <%= action.description %>
+<a href="<%= link %>"><%= action.action_name %></a> | <%= action.description %> | <%= [:ios, :android, :mac].find_all { |a| action.is_supported?(a) }.join(", ") %>
<%- end %><%# End of actions.sort... %>
<%- end %><%# End of categories.each %>