diff --git a/.gitea/workflows/workflow.yaml b/.gitea/workflows/workflow.yaml index 009d3ec..8f3625e 100644 --- a/.gitea/workflows/workflow.yaml +++ b/.gitea/workflows/workflow.yaml @@ -54,6 +54,7 @@ jobs: run: | mkdir -p deploy + # could also configure turbo.json to output everything in root-subdir? for public in apps/*/.output/public; do if [ -d "$public" ]; then # Derive the app name (e.g. "marketing" for apps/marketing) diff --git a/turbo.json b/turbo.json index d1ab4ad..8d40a99 100644 --- a/turbo.json +++ b/turbo.json @@ -10,6 +10,10 @@ "dev": { "cache": false, "persistent": true + }, + "generate": { + "dependsOn": ["^generate"], + "outputs": [".output/**"] } } }