The times that I've done this, my approach has been to take the build engineer out of the process entirely. I automated building the installer as part of the same scripts that automate the build. The build engineer is responsible for automating builds, not writing and following checklists. (If you can write a checklist for the build process, then you can automate the build process. If you can't write a checklist for the build process, you have no business releasing software.)
Developers can build an entire release in their private development environment, and test any way they see fit (I recommend using a Virtual Machine with snapshots). Once the developer is happy, they commit their code to a SCM repository. A Continuous Integration engine (Hudson, CruiseControl, etc) monitors the repository and kicks off an integration build. Once the integration build is complete, the result is ready to send to QA for test. If you depend upon an installer that requires special licensed software to build, then instead of buying a licensed copy for each developer, just get a license for the CI server, and have the developers pick up installer builds from the CI server once its build complete.
If you want to have more process (shudder) then have the developers commit to a development branch, which is monitored by the CI server, which produces builds from the development branch. Only developers test the releases from the development branch. Once the development team is happy with the result, the changes from the development branch are promoted (merged) to the main branch, which is also monitored by the CI server, to produce a release for QA.
I've even worked in environments where there were (private) developer branches, which flow into team development branches, which flow into integration branches, which flow into release branches, each of which has a review board to determine when to promote changes from one branch to the next. That was insane, IMHO, but the QA staff loved it -- permanent employment for QA staff to monitor the process.