Hi Subhomoy, You can create a script (Not in build) for all of the user logins or one script for one user login if you want to control each of them for the deployment. And then you can create a SQLCDM variable, i.e., $(DeployUserLogin) with default value 0. In the user login script, you can add the IF statement:
IF $(DeployUserLogin) = 1
BEGIN
-- User login script is here
END
This way you can control the post deployment scripts for the user logins. If you do not want to deploy them, you can set the variable to 0, otherwise 1.