Compare commits

...

8 commits

Author SHA1 Message Date
56822df8a5
>
All checks were successful
/ job (push) Successful in 6m6s
2025-06-08 20:58:57 +02:00
1b2a761cc4
quoteagain 2025-06-08 20:58:56 +02:00
91c2209fef
reoverquote 2025-06-08 20:58:56 +02:00
4f04f669cc
overquote 2025-06-08 20:58:56 +02:00
511eb4cf70
quote 2025-06-08 20:58:56 +02:00
79ada71bc6
quotes 2025-06-08 20:58:55 +02:00
1c405a7851
oneliners 2025-06-08 20:58:55 +02:00
163cf2df83
out 2025-06-08 20:58:45 +02:00
2 changed files with 13 additions and 9 deletions

View file

@ -17,14 +17,18 @@ jobs:
- run: spcd-browse-workspace - run: spcd-browse-workspace
- uses: ./act/action - uses: ./act/action
with: with:
arg_1: string arg_1: '"one"'
arg_2: arg_2: >
- one [
- two "one",
arg_3: "two",
- a: x ]
- b: y arg_3: >
- c: z {
"one": 1,
"two": 2,
"three": 3,
}
- uses: ./act/synchronize - uses: ./act/synchronize
with: with:
source: output source: output

View file

@ -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")