Compare commits
8 commits
974bf0c47e
...
56822df8a5
Author | SHA1 | Date | |
---|---|---|---|
56822df8a5 | |||
1b2a761cc4 | |||
91c2209fef | |||
4f04f669cc | |||
511eb4cf70 | |||
79ada71bc6 | |||
1c405a7851 | |||
163cf2df83 |
2 changed files with 13 additions and 9 deletions
|
@ -17,14 +17,18 @@ jobs:
|
|||
- run: spcd-browse-workspace
|
||||
- uses: ./act/action
|
||||
with:
|
||||
arg_1: string
|
||||
arg_2:
|
||||
- one
|
||||
- two
|
||||
arg_3:
|
||||
- a: x
|
||||
- b: y
|
||||
- c: z
|
||||
arg_1: '"one"'
|
||||
arg_2: >
|
||||
[
|
||||
"one",
|
||||
"two",
|
||||
]
|
||||
arg_3: >
|
||||
{
|
||||
"one": 1,
|
||||
"two": 2,
|
||||
"three": 3,
|
||||
}
|
||||
- uses: ./act/synchronize
|
||||
with:
|
||||
source: output
|
||||
|
|
|
@ -6,6 +6,6 @@ from pathlib import Path
|
|||
from rwx.fs import make_directory, write
|
||||
|
||||
if __name__ == "__main__":
|
||||
out = Path(__file__).parent / "output" / "web"
|
||||
out = Path(__file__).parent / "out" / "web"
|
||||
make_directory(out)
|
||||
write(out / "index.html", "prj.rwx.work")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue