Class: HomebrewAutomation::CLI::WorkflowCommands

Inherits:
Thor
  • Object
show all
Defined in:
lib/homebrew_automation/cli/workflow_commands.rb

Instance Method Summary collapse

Instance Method Details

#build_and_uploadObject



31
32
33
34
35
36
37
38
39
40
41
# File 'lib/homebrew_automation/cli/workflow_commands.rb', line 31

def build_and_upload
  workflow.build_and_upload_bottle!(
    sdist,
    tap,
    git,
    formula_name,
    bintray_version,
    logger,
    keep_tap_repo: options[:keep_tap_repo],
    keep_homebrew_tmp: options[:keep_brew_tmp])
end

#gather_and_publishObject



50
51
52
53
54
55
56
57
58
# File 'lib/homebrew_automation/cli/workflow_commands.rb', line 50

def gather_and_publish
  workflow.gather_and_publish_bottles!(
    sdist,
    tap,
    formula_name,
    bintray_version,
    git,
    logger)
end