Compare commits

...

5 commits

Author SHA1 Message Date
53fd3be916
list,dict 2024-10-20 20:34:21 +02:00
020175c6fe
action
Some checks failed
/ job (push) Failing after 1m15s
2024-10-20 19:51:09 +02:00
100687cad5
act
Some checks failed
/ job (push) Failing after 1m16s
2024-10-14 22:44:03 +02:00
983017f455
source: output
Some checks failed
/ job (push) Failing after 1m10s
2024-10-14 21:48:31 +02:00
72a0f52c38
workflow/action
Some checks failed
/ job (push) Failing after 1m10s
2024-10-14 15:24:32 +02:00
2 changed files with 14 additions and 2 deletions

View file

@ -14,4 +14,16 @@ jobs:
- run: spcd-check-project
- run: spcd-build-project
- run: spcd-browse-workspace
- run: spcd-synchronize
- uses: ./act/action
with:
arg_1: string
arg_2:
- one
- two
arg_3:
- a: x
- b: y
- c: z
- uses: ./act/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")