AWX multiple templates on workflow

I’m working on a Workflow on AWX to run several templates (basically playbooks).
I have created a project that connects to the git to get my playbooks.

Manually they will run one after the other and one of the playbooks will depend on the other. For example the 001 playbook will generate some files that the 002 playbook will need.

├── integration
│ ├── 001_get_changes.yml
│ ├── 002_create_json.yml
│ ├── 003_get_owners.yml
│ ├── 004_get_instances.yml
│ ├── 005_check_landscape.yml
│ ├── 006_create_landscape.yml
│ ├── 007_check_environment.yml
│ ├── 008_create_environment.yml
│ ├── _ansible.cfg
│ ├── files

│ ├── vars
│ ├── templates

So when I run them with the workflow, they fail.
The message is that 002, is not able to find the files generated by 001.

My question would be, the templates run separated even in the same workflow?
I have added a “Project Sync” between the 2 templates on the workflow, but there were no changes. Is there anyway to get the files from one template to the other?

Thanks