source: output
Some checks failed
/ job (push) Failing after 1m10s

This commit is contained in:
Marc Beninca 2024-10-14 21:48:31 +02:00
parent 72a0f52c38
commit 983017f455
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
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")