Skip to content
This repository is currently being migrated. It's locked while the migration is in progress.

Commit

Permalink
Merge pull request #65 from zopaUK/treat-octopus-api-as-sensitive
Browse files Browse the repository at this point in the history
Treat the octopus api as sensitive
  • Loading branch information
lukesmith committed Jan 19, 2016
2 parents 335023a + 462acd4 commit 1932366
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bozo-scripts.gemspec
Expand Up @@ -22,6 +22,6 @@ Gem::Specification.new do |s|
s.add_runtime_dependency "nokogiri", '~> 1.5.1'
s.add_runtime_dependency "erubis", '~> 2.7.0'
s.add_runtime_dependency 'test-unit', '~> 2.4.8'
s.add_runtime_dependency "bozo", '~> 0.4.0'
s.add_runtime_dependency "bozo", '~> 0.5.0'
s.add_runtime_dependency "zip", '~> 2.0.2'
end
2 changes: 1 addition & 1 deletion lib/bozo/hooks/octopus_create_release.rb
Expand Up @@ -49,7 +49,7 @@ def post_publish
args << "--version #{env['BUILD_VERSION_FULL']}"
args << "--packageversion #{env['BUILD_VERSION_FULL']}"
args << "--server #{@octopus_server}"
args << "--apiKey #{@octopus_api_key}"
args << ['--apiKey', Bozo::SensitiveValue.new(@octopus_api_key)]
args << "--releaseNotes \"[Build #{env['BUILD_VERSION_FULL']}](#{env['BUILD_URL']})\""

if @display_progress
Expand Down

0 comments on commit 1932366

Please sign in to comment.