Skip to content

Commit

Permalink
Merge branch 'fix-release-issues' of github.com:tohuwabohu/puppet-ope…
Browse files Browse the repository at this point in the history
…nntp
  • Loading branch information
tohuwabohu committed Mar 29, 2020
2 parents 2f93466 + 5ec4f21 commit 950939c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -6,7 +6,7 @@ group :development, :test do
gem 'rspec-puppet', '~> 2.4'
gem 'pdk', '~> 1.17'
gem 'puppetlabs_spec_helper', '~> 2.3'
gem 'puppet-blacksmith', '< 4.0.0' # downgraded due to https://github.com/voxpupuli/puppet-blacksmith/issues/57
gem 'puppet-blacksmith', '~> 5.1'
gem 'puppet-lint', '~> 2.0'
gem 'metadata-json-lint', '~> 2.0'
gem 'puppet-lint-unquoted_string-check', '~> 2.0'
Expand Down
10 changes: 10 additions & 0 deletions Rakefile
Expand Up @@ -14,6 +14,16 @@ exclude_paths = [
PuppetLint.configuration.fail_on_warnings = true
PuppetLint.configuration.ignore_paths = exclude_paths
PuppetSyntax.exclude_paths = exclude_paths
Blacksmith::RakeTask.new do |t|
t.tag_message_pattern = "Version %s" # Signed tags must have a message
t.tag_sign = true # enable GPG signing
end

# work around for https://github.com/voxpupuli/puppet-blacksmith/issues/57
Rake::Task["module:release"].clear
namespace :module do
task :release => [:clean, :build, :tag, :push, :bump_commit]
end

task :test => [
:syntax,
Expand Down

0 comments on commit 950939c

Please sign in to comment.