I've seen and attempted to follow several examples of how to do this, but they all seem to be for the version of web assembly projects that target .Net 2.1 Standard.
- https://swimburger.net/blog/dotnet/how-to-deploy-aspnet-blazor-webassembly-to-github-pages
- https://www.meziantou.net/publishing-a-blazor-webassembly-application-to-github-pages.htm
- https://www.davideguida.com/how-to-deploy-blazor-webassembly-on-github-pages-using-github-actions/
The project I am attempting to deploy with a github action is targeting .Net 5.0
According to the documentation from MS, "Standalone deployment assets are published into the /bin/Release/{TARGET FRAMEWORK}/publish/wwwroot folder."
I'd thought of just giving up on a CI/CD for this and just deploying it manually. However, when I examine this folder, there is no 'publish' folder inside the {TARGET FRAMEWORK} folder. And inside wwwroot, there is nothing resembling what I'd think of as a web site.
So... can anybody give direction on how to achieve this?