Skip to content

Commit

Permalink
Merge pull request #17 from danielberkompas/update-release-script
Browse files Browse the repository at this point in the history
Update release script
  • Loading branch information
danielberkompas committed Sep 20, 2015
2 parents ed9bcc5 + 2b9232f commit f420c80
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions script/release
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ continue = system "git tag v#{version}" if continue
continue = system "git push" if continue
continue = system "git push -f origin v#{version}" if continue
continue = system "mix hex.publish" if continue
continue = system "mix hex.docs" if continue
continue = system "MIX_ENV=docs mix hex.docs" if continue
continue = system "github_changelog_generator"
continue = system "git add ." if continue
continue = system "git commit -am \"Update changelog for version #{version}\"" if continue
continue = system "git push" if continue

puts "Version #{version} was successfully released!"

0 comments on commit f420c80

Please sign in to comment.