Compare commits
2 commits
a6cbf0bb05
...
2fde2aeead
Author | SHA1 | Date | |
---|---|---|---|
2fde2aeead | |||
a433d401be |
2 changed files with 12 additions and 0 deletions
|
@ -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
11
build.py
Executable 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")
|
Loading…
Reference in a new issue