New IDEA versions have an option to generate unsigned APK in the Android Facet settings, Compiler tab:

However you don't need to do that if you use the Export Signed Android Package feature:
Tools | Android | Export Signed Android Package will generate the release version of your application signed with the release key and ready for Market.
You can also create a batch file that will sign the unsigned APK and configure it as an External Tool in IDEA so that you can generate it in one click or via keyboard shortcut (if you are OK with a batch file containing your keystore passwords in open text).
I use such script to generate the signed APK, upload it to a phone and start the main Activity to perform application testing, it has the following sequence of actions:
jarsigner
zipalign
adb install
adb start
EDIT 2013/2/8: The option to export a Signed APK is now under Top Menu > Build > Generate Signed APK (IntelliJ IDEA 12)
IDEA 12 has even better way to do it via artifact, configured like this:

Then use Build | Build Artifacts when you need to make a release version.