Class: Fastlane::Actions::GetGithubReleaseAction
- Inherits:
-
Fastlane::Action
- Object
- Fastlane::Action
- Fastlane::Actions::GetGithubReleaseAction
- Defined in:
- lib/fastlane/actions/get_github_release.rb
Documentation collapse
- .authors ⇒ Object
- .available_options ⇒ Object
- .description ⇒ Object
- .details ⇒ Object
- .is_supported?(platform) ⇒ Boolean
- .output ⇒ Object
Class Method Summary collapse
Methods inherited from Fastlane::Action
action_name, author, sh, step_text
Class Method Details
.authors ⇒ Object
122 123 124 |
# File 'lib/fastlane/actions/get_github_release.rb', line 122 def self. ["KrauseFx", "czechboy0"] end |
.available_options ⇒ Object
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
# File 'lib/fastlane/actions/get_github_release.rb', line 103 def self. [ FastlaneCore::ConfigItem.new(key: :url, env_name: "FL_GET_GITHUB_RELEASE_URL", description: "The path to your repo, e.g. 'KrauseFx/fastlane'", verify_block: Proc.new do |value| raise "Please only pass the path, e.g. 'KrauseFx/fastlane'".red if value.include?"github.com" raise "Please only pass the path, e.g. 'KrauseFx/fastlane'".red if value.split('/').count != 2 end), FastlaneCore::ConfigItem.new(key: :version, env_name: "FL_GET_GITHUB_RELEASE_VERSION", description: "The version tag of the release to check"), FastlaneCore::ConfigItem.new(key: :api_token, env_name: "FL_GITHUB_RELEASE_API_TOKEN", description: "GitHub Personal Token (required for private repositories)", optional: true) ] end |
.description ⇒ Object
48 49 50 |
# File 'lib/fastlane/actions/get_github_release.rb', line 48 def self.description "This will verify if a given release version is avialable on GitHub" end |
.details ⇒ Object
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
# File 'lib/fastlane/actions/get_github_release.rb', line 52 def self.details sample = ' {"url"=>"https://api.github.com/repos/KrauseFx/fastlane/releases/1537713", "assets_url"=>"https://api.github.com/repos/KrauseFx/fastlane/releases/1537713/assets", "upload_url"=>"https://uploads.github.com/repos/KrauseFx/fastlane/releases/1537713/assets{?name}", "html_url"=>"https://github.com/KrauseFx/fastlane/releases/tag/1.8.0", "id"=>1537713, "tag_name"=>"1.8.0", "target_commitish"=>"master", "name"=>"1.8.0 Switch Lanes & Pass Parameters", "draft"=>false, "author"=> {"login"=>"KrauseFx", "id"=>869950, "avatar_url"=>"https://avatars.githubusercontent.com/u/869950?v=3", "gravatar_id"=>"", "url"=>"https://api.github.com/users/KrauseFx", "html_url"=>"https://github.com/KrauseFx", "followers_url"=>"https://api.github.com/users/KrauseFx/followers", "following_url"=>"https://api.github.com/users/KrauseFx/following{/other_user}", "gists_url"=>"https://api.github.com/users/KrauseFx/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/KrauseFx/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/KrauseFx/subscriptions", "organizations_url"=>"https://api.github.com/users/KrauseFx/orgs", "repos_url"=>"https://api.github.com/users/KrauseFx/repos", "events_url"=>"https://api.github.com/users/KrauseFx/events{/privacy}", "received_events_url"=>"https://api.github.com/users/KrauseFx/received_events", "type"=>"User", "site_admin"=>false}, "prerelease"=>false, "created_at"=>"2015-07-14T23:33:01Z", "published_at"=>"2015-07-14T23:44:10Z", "assets"=>[], "tarball_url"=>"https://api.github.com/repos/KrauseFx/fastlane/tarball/1.8.0", "zipball_url"=>"https://api.github.com/repos/KrauseFx/fastlane/zipball/1.8.0", "body"=> ...Markdown... "This is one of the biggest updates of `fastlane` yet" }' [ "This will return all information about a release. For example:", sample ].join("\n") end |
.is_supported?(platform) ⇒ Boolean
126 127 128 |
# File 'lib/fastlane/actions/get_github_release.rb', line 126 def self.is_supported?(platform) true end |
.output ⇒ Object
97 98 99 100 101 |
# File 'lib/fastlane/actions/get_github_release.rb', line 97 def self.output [ ['GET_GITHUB_RELEASE_INFO', 'Contains all the information about this release'] ] end |
.run(params) ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/fastlane/actions/get_github_release.rb', line 8 def self.run(params) Helper.log.info "Getting release on GitHub (#{params[:url]}: #{params[:version]})" require 'excon' require 'base64' headers = { 'User-Agent' => 'fastlane-get_github_release' } headers['Authorization'] = "Basic #{Base64.strict_encode64(params[:api_token])}" if params[:api_token] response = Excon.get("https://api.github.com/repos/#{params[:url]}/releases", :headers => headers) case response[:status] when 404 Helper.log.error "Repository #{params[:url]} cannot be found, please double check its name and that you provided a valid API token (if it's a private repository).".red return nil when 401 Helper.log.error "You are not authorized to access #{params[:url]}, please make sure you provided a valid API token.".red return nil else if response[:status] != 200 Helper.log.error "GitHub responded with #{response[:status]}:#{response[:body]}".red return nil end end result = JSON.parse(response.body) result.each do |current| if current['tag_name'] == params[:version] # Found it Actions.lane_context[SharedValues::GET_GITHUB_RELEASE_INFO] = current Helper.log.info "Version is already live on GitHub.com 🚁" return current end end Helper.log.info "Couldn't find GitHub release #{params[:version]}".yellow return nil end |