Compare commits
No commits in common. "53fd3be916640cce0e84d6ccdde240c9d8cd92aa" and "2fde2aeead1409c6d8dc3003d4ced804da2edf19" have entirely different histories.
53fd3be916
...
2fde2aeead
2 changed files with 2 additions and 14 deletions
|
@ -14,16 +14,4 @@ jobs:
|
||||||
- run: spcd-check-project
|
- run: spcd-check-project
|
||||||
- run: spcd-build-project
|
- run: spcd-build-project
|
||||||
- run: spcd-browse-workspace
|
- run: spcd-browse-workspace
|
||||||
- uses: ./act/action
|
- run: spcd-synchronize
|
||||||
with:
|
|
||||||
arg_1: string
|
|
||||||
arg_2:
|
|
||||||
- one
|
|
||||||
- two
|
|
||||||
arg_3:
|
|
||||||
- a: x
|
|
||||||
- b: y
|
|
||||||
- c: z
|
|
||||||
- uses: ./act/synchronize
|
|
||||||
with:
|
|
||||||
source: output
|
|
||||||
|
|
2
build.py
2
build.py
|
@ -6,6 +6,6 @@ from pathlib import Path
|
||||||
from rwx.fs import make_directory, write
|
from rwx.fs import make_directory, write
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
out = Path(__file__).parent / "output" / "web"
|
out = Path(__file__).parent / "out" / "web"
|
||||||
make_directory(out)
|
make_directory(out)
|
||||||
write(out / "index.html", "prj.rwx.work")
|
write(out / "index.html", "prj.rwx.work")
|
||||||
|
|
Loading…
Reference in a new issue