An approach which is worth considering: do those things which needs to be done for the software to be release not and the very end of the development cycle, but do it early instead. By doing this "just before the release" you risk a lot, because those things will usualy take a lot more effort and energy than expected.
Those things are:
- build setup, or whatever deployment method your application uses
- let other test the application
- fix known critical bugs
For larger projects I would add:
- create automated testing pipeline and create at least functionality tests covering the basic functionality
- create automated build pipeline, which should build Retail configuration of your project and automatically create a setup from it
This taken into all consequences leads to key principles of agile development: deploy early, deploy frequently, deploy to someone representing the customer.
