Hi there! I'm having trouble creating a Flow that:
1. Triggers when it receives fields from Power Apps
2. Fills out a Word Document using those details
3. Converts that Word Document into a PDF
4. Stores that PDF in SharePoint
I'm successfully able to do steps 1 and 2 currently, but am having issues converting it to a PDF.
These are the actions in my flow:
-PowerApps (v2)
--Retrieves about 10 fields from a connected PowerApp
-Populate a Microsoft Word template
--Links to a .docx file in our SharePoint library and fills in all the fields using data from the PowerApps data
-Create File 1
--Points to a location in our SharePoint library and stores the file as NAME.docx (NAME being a field retrieved from the PowerApp)
--File Content being the "Microsoft Word document" output from the "Populate a Microsoft Word Template" action

-Get File Content
--Site Address is set to the location that the above file is stored at
--File Identifier is set to NAME.docx

-Convert File
--File is set to File Content, which was retrieved from the previous "Get File Content" action
--Target Type is set to PDF

-Create File
--Location is set to the same spot as the original SharePoint location, except the file name is now NAME.pdf
--File Content is set to the output of the File Content from the Convert File Action

With these actions, when I test this flow, the Create file 1, Get File content, and convert file actions are all skipped and no files are being stored in the SharePoint location at all.

What am I doing wrong here?
Thanks for your help!