function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
AndrewTaylorAndrewTaylor 

Metadata API - Error: Cannot find folder:

I'm trying to deploy a new Report to a target org with a new folder, and keep getting the following error in my deployment:
 
All Component Failures:
1.  reports/<report_folder>/<report_name>.report -- Error: Cannot find folder:<report_folder>
I'm hoping this doesn't involve manual creation of the folder in the target org.

I have the report folder in my metadata in reports/<report_name>-meta.xml, and looks like:
 
<?xml version="1.0" encoding="UTF-8"?>
<ReportFolder xmlns="http://soap.sforce.com/2006/04/metadata">
	<accessType>Public</accessType>
    <name>report name</name>
	<publicFolderAccess>ReadOnly</publicFolderAccess>
</ReportFolder>

Is there something I'm missing?