Promote stage schema after testing

Hey, we using dbt and we have the following steps:
Schemas:

  • project
  • project_base
  • project_stage
  • project_stage_base
  1. dbt seed for loading CSV > project_stage_base schema
  2. dbt run for creating base tables in project_stage_base schema
  3. dbt test for testing sources.
  4. dbt run for creating all the models at project_stage schema
  5. dbt test for testing the models at project_stage schema
  6. dbt run_operation to move all base tables from project_stage_base to project_base
  7. dbt run to generate all models at project schema

The idea is to run all steps in the ‘stage’ schema, test it, and if test passed to deploy it to the main project schema.
For base schema, all the models are tables and its easy to move them (copy) but for the main schema most of the models are views.
The view models contain references and variables and its not easy to move them with SQL operation.
It’s important not to ‘brake’ the main schema if tests not passed.
Is there any pattern on how to ‘deploy’ the new models using dbt?

Thanks in advance!