Add .gitea/workflows/render-and-deploy.yml
This commit is contained in:
28
.gitea/workflows/render-and-deploy.yml
Normal file
28
.gitea/workflows/render-and-deploy.yml
Normal file
@@ -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
|
||||
Reference in New Issue
Block a user