<!-- Which version of electron-builder are you using? --> * **Version**: 13.11.1 <!-- Which version of electron-updater are you using (if applicable)? --> <!-- What target are you building for? --> * **Target**: Windows 32 and 64bit `Platform.WINDOWS.createTarget('nsis-web', Arch.x64, Arch.ia32);` My publish settings are: ` publish: { provider: 'generic', url: 'https://domain.com/update/${os}_${arch}' } ` Both 64bit and 32bit builds output the same `app-update.yml` in the resources directory. `provider: generic url: 'https://domain.com/update/win_x64'` The 32bit build should have a different arch variable. Correct?