source: output

This commit is contained in:
2024-10-14 21:48:31 +02:00
parent 72a0f52c38
commit 983017f455
2 changed files with 3 additions and 1 deletions

View File

@@ -15,3 +15,5 @@ jobs:
- run: spcd-build-project
- run: spcd-browse-workspace
- uses: ./actions/synchronize
with:
source: output

View File

@@ -6,6 +6,6 @@ from pathlib import Path
from rwx.fs import make_directory, write
if __name__ == "__main__":
out = Path(__file__).parent / "out" / "web"
out = Path(__file__).parent / "output" / "web"
make_directory(out)
write(out / "index.html", "prj.rwx.work")