If you’re not seeing your dags after you deploy but not seeing an error when you issue astro airflow deploy, you may want to check the permissions on your files. If the project’s permissions are limited, Astronomer Cloud may not be able to access the files.
Issue ls -la to check what the permissions are like on your project.
MacBook-Pro-7:chmod tardis5$ ls -la
total 16
drwxr-xr-x 10 tardis5 staff 320 Feb 28 16:04 .
drwx------+ 37 tardis5 staff 1184 Feb 28 16:03 ..
drwxr-x--- 3 tardis5 staff 96 Feb 28 16:04 .astro
-rw-r--r-- 1 tardis5 staff 11 Feb 28 16:04 .dockerignore
-rw-r--r-- 1 tardis5 staff 49 Feb 28 16:04 Dockerfile
drwxr-xr-x 3 tardis5 staff 96 Feb 28 16:04 dags
drwxr-xr-x 2 tardis5 staff 64 Feb 28 16:04 include
-rw-r--r-- 1 tardis5 staff 0 Feb 28 16:04 packages.txt
drwxr-xr-x 3 tardis5 staff 96 Feb 28 16:04 plugins
-rw-r--r-- 1 tardis5 staff 0 Feb 28 16:04 requirements.txt
If your project permissions don’t match this, issue chmod -R 777 {directory_name} to loosen the permissions and try redeploying.