Error message - Problem running dbt build in Fivetran

Hello I run into error running dbt 1.7.3 with python 3.8.

The problem I’m having

is I run dbt from fivetran. I have extra file deployment.yml to schedule this run.
In one step I run :
dbt build --debug --selector full

I got error while executing this command.
This error makes issue in Fivetran as it says:
The ‘manifest.json’ artifact file not found after executing the command generating the manifest. Project id: ‘payphone_lately’. TargetName: ‘prod’.

The context of why I’m trying to do this

I am trying to make it run from Fivetran, but I do not know what is wrong as this project run with success from my local machine.

What I’ve already tried

I have tried to use different version of dbt.

Some example code or error messages

Sending event: {'category': 'dbt', 'action': 'adapter_info', 'label': 'c428d133-0188-46bd-83dd-fa5301bc6b96', 'context': []}
Registered adapter: snowflake=1.7.0
checksum: 8415a8b5ac521efc1067965415e36bd696004041e053bfc71c5a1fc14f82ce9a, vars: {}, profile: fivetran, target: prod, version: 1.7.3
Unable to do partial parsing because saved manifest not found. Starting full parse.
Sending event: {'category': 'dbt', 'action': 'partial_parser', 'label': 'c428d133-0188-46bd-83dd-fa5301bc6b96', 'context': []}
Encountered an error:
'<' not supported between instances of 'NoneType' and 'NoneType'
File "/usr/local/lib/python3.8/dist-packages/dbt/parser/base.py", line 397, in initial_config
config_version = min([self.project.config_version, self.root_project.config_version])
TypeError: '<' not supported between instances of 'NoneType' and 'NoneType'

I have resolved this problem by including into dbt_project.yml file required line :

config-version: 2

It worked.