commit 6dec5f2136ac44367209224f8aeda7f75b4e1478 Author: lyra_phasma Date: Thu Apr 9 18:47:37 2026 +0000 Add .gitea/workflows/render-and-deploy.yml diff --git a/.gitea/workflows/render-and-deploy.yml b/.gitea/workflows/render-and-deploy.yml new file mode 100644 index 0000000..5b3a997 --- /dev/null +++ b/.gitea/workflows/render-and-deploy.yml @@ -0,0 +1,28 @@ +name: Render and Deploy OpenCloud + +on: + workflow_dispatch: + repository_dispatch: + +jobs: + render: + runs-on: ubuntu-latest + steps: + - name: Checkout deploy repo + uses: actions/checkout@v6 + with: + repository: 'lyra_phasma' + + - name: Setup Python + uses: actions/setup-python@v6 + with: + python-version: '3.13' + + - name: Install Docker Compose plugin + run: | + docker version + docker compose version || true + + - name: Modify files + run: | + python scripts/patch-weboffice-collabora-yaml.py \ No newline at end of file