Is there something *like* netlify that allows you to deploy easily from gitea?

Looking for a nice streamlined way to deploy from a gitea repository, much like netlify, vercel etc let you do with github

It’s not difficult to do yourself. Make an action that builds your site and deploys it to a directory based on the repository / branch name / commit / whatever.
Then set up a web server with a wildcard hostname to serve the deployed site from the appropriate directory.

I do it with buildbot + Apache, but you could use Gitea actions + Caddy or nginx or whatever else.

1 Like