Configuring AMP output format for specific pages

I seek to generate HTML & AMP version for a certain pages for my site. To achieve this, I added the following to TOML front matter of .md files for these pages:

+++
title = “…”

outputs = [“html”, “amp”]
+++
… content here…

However, I do not see the amp version of the pages generated in the output directory (only html version is created). If my html is generated at /var/www/html/mysite/hello/index.html - I am looking for /var/www/html/mysite/amp/hello/index.html

Am I missing something wrt. configuring the output format?

Found a resolution right after I posted the question. Turns out I was looking for amp output in the wrong location. This question is resolved.