Compare commits

...

2 commits

Author SHA1 Message Date
2fde2aeead
check
All checks were successful
/ job (push) Successful in 1m10s
2024-10-14 14:37:25 +02:00
a433d401be
build 2024-10-14 14:37:01 +02:00
2 changed files with 12 additions and 0 deletions

View file

@ -11,6 +11,7 @@ jobs:
SPCD_SSH_KEY: ${{secrets.SPCD_SSH_KEY}}
run: ${{vars.SPCD}}
- run: spcd-check-project
- run: spcd-build-project
- run: spcd-browse-workspace
- run: spcd-synchronize

11
build.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", "prj.rwx.work")