Commit 76fe9d45d7bc49bf5fb4c6ecc324ee384e107b6b
1 parent
3c670157
Exists in
master
and in
29 other branches
release-script: update authors before version bump
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
lib/tasks/release.rake
@@ -216,6 +216,9 @@ EOF | @@ -216,6 +216,9 @@ EOF | ||
216 | task :release, :release_kind do |t, args| | 216 | task :release, :release_kind do |t, args| |
217 | release_kind = args[:release_kind] || 'stable' | 217 | release_kind = args[:release_kind] || 'stable' |
218 | 218 | ||
219 | + puts "==> Updating authors..." | ||
220 | + Rake::Task['noosfero:authors'].invoke | ||
221 | + | ||
219 | Rake::Task['noosfero:set_version'].invoke(release_kind) | 222 | Rake::Task['noosfero:set_version'].invoke(release_kind) |
220 | 223 | ||
221 | puts "==> Checking tags..." | 224 | puts "==> Checking tags..." |
@@ -230,9 +233,6 @@ EOF | @@ -230,9 +233,6 @@ EOF | ||
230 | commit_changes(['public/500.html', 'public/503.html'], 'Updating public error pages') | 233 | commit_changes(['public/500.html', 'public/503.html'], 'Updating public error pages') |
231 | end | 234 | end |
232 | 235 | ||
233 | - puts "==> Updating authors..." | ||
234 | - Rake::Task['noosfero:authors'].invoke | ||
235 | - | ||
236 | puts "==> Checking repository..." | 236 | puts "==> Checking repository..." |
237 | Rake::Task['noosfero:check_repo'].invoke | 237 | Rake::Task['noosfero:check_repo'].invoke |
238 | 238 |