---
titel_en: Host a Lovable project on Dorelli Cloud
titel_nl: Een Lovable-project hosten bij Dorelli Cloud
categorie: deploy
bundels: website, app
geverifieerd_op: 2026-09-13
bewijs: app/deploy/page.tsx, .github/actions/dorelli-deploy/action.yml
zoekwoorden: lovable, github, workflow, action, sync
---
## en
Lovable has no button to publish to another host; the way out is GitHub. Connect your project to GitHub (top right in Lovable), then add this file to your repository as `.github/workflows/dorelli.yml`:

```yaml
name: Publish to Dorelli
on:
  push:
    branches: [main]

jobs:
  publish:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-node@v4
        with:
          node-version: 22
      - run: npm ci && npm run build
      - run: npx github:elsaviour/dorelli-cli deploy dist --email you@example.com --yes
```

From then on every change in Lovable publishes itself. Your project is built on the servers of GitHub, not ours, which keeps it fast and safe. After the first run the job summary tells you which secrets to set so the next push updates the same site instead of creating a new one.

Does your Lovable project have a backend and a database (logins, orders, a dashboard with data)? Then it is a Node or Next app, not a static site: use the App plan, see [Deploy an app with a database](/docs/deploy/app).

## nl
Lovable heeft geen knop om naar een andere hoster te publiceren; de weg naar buiten loopt via GitHub. Koppel je project aan GitHub (knop rechtsboven in Lovable) en zet dan dit bestand in je repository als `.github/workflows/dorelli.yml`:

```yaml
name: Publiceer naar Dorelli
on:
  push:
    branches: [main]

jobs:
  publiceren:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-node@v4
        with:
          node-version: 22
      - run: npm ci && npm run build
      - run: npx github:elsaviour/dorelli-cli deploy dist --email jij@voorbeeld.nl --yes
```

Vanaf dan publiceert elke wijziging in Lovable zichzelf. Je project wordt gebouwd op de servers van GitHub, niet op die van ons; dat houdt het snel en veilig. Na de eerste run staat in de samenvatting van de job welke secrets je zet, zodat de volgende push dezelfde site bijwerkt in plaats van een nieuwe te maken.

Heeft je Lovable-project een backend en database (inloggen, bestellingen, een dashboard met data)? Dan is het een Node- of Next-app en geen statische site: gebruik de App-bundel, zie [Een app met database deployen](/docs/deploy/app).
