Compare commits

...

2 commits

Author SHA1 Message Date
Marc Beninca
6ebf390d98
render
All checks were successful
/ job (push) Successful in 5m29s
2025-06-08 02:31:47 +02:00
Marc Beninca
acac533eee
workflow 2025-06-08 02:30:46 +02:00
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,18 @@
on: [push]
jobs:
job:
runs-on: ubuntu-latest
container:
image: ${{vars.DOCKER}}debian:bookworm
steps:
- name: spcd
env:
SPCD: ${{vars.SPCD}}
SPCD_SSH_HOSTS: ${{vars.SPCD_SSH_HOSTS}}
SPCD_SSH_KEY: ${{secrets.SPCD_SSH_KEY}}
SPCD_TXT_LOCALE: ${{vars.SPCD_TXT_LOCALE}}
run: ${{vars.SPCD}}
- run: spcd-build-project
- run: spcd-browse-workspace
- run: spcd-synchronize

11
render.py Executable file
View file

@ -0,0 +1,11 @@
#! /usr/bin/env python3
"""Dummy build."""
from pathlib import Path
from rwx.fs import make_directory, write
if __name__ == "__main__":
out = Path(__file__).parent / "out" / "web"
make_directory(out)
write(out / "index.html", "ilos.rwx.work")