Run mkdeb task right before publishing

This commit is contained in:
Kevin Sawicki 2014-09-22 10:33:29 -07:00
parent 481653ff60
commit c94b03f13d

View File

@ -229,8 +229,8 @@ module.exports = (grunt) ->
ciTasks = ['output-disk-space', 'download-atom-shell', 'build']
ciTasks.push('dump-symbols') if process.platform isnt 'win32'
ciTasks.push('mkdeb') if process.platform is 'linux'
ciTasks.push('set-version', 'check-licenses', 'lint')
ciTasks.push('mkdeb') if process.platform is 'linux'
ciTasks.push('test') if process.platform isnt 'linux'
ciTasks.push('codesign', 'publish-build')
grunt.registerTask('ci', ciTasks)