Compare commits

...

17 Commits

Author SHA1 Message Date
56822df8a5 >
Some checks are pending
/ job (push) Has started running
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
a48a88adc1 runs-on 2025-06-08 11:58:02 +02:00
eebdf48ff3 render 2025-06-08 11:55:36 +02:00
53fd3be916 list,dict 2024-10-20 20:34:21 +02:00
020175c6fe action 2024-10-20 19:51:09 +02:00
100687cad5 act 2024-10-14 22:44:03 +02:00
983017f455 source: output 2024-10-14 21:48:31 +02:00
72a0f52c38 workflow/action 2024-10-14 15:24:32 +02:00
2fde2aeead check 2024-10-14 14:37:25 +02:00
a433d401be build 2024-10-14 14:37:01 +02:00
2 changed files with 30 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
on: [push]
jobs:
job:
runs-on: ubuntu-latest
container:
image: ${{vars.DOCKER}}debian:bookworm
steps:
@@ -11,6 +12,23 @@ jobs:
SPCD_SSH_KEY: ${{secrets.SPCD_SSH_KEY}}
run: ${{vars.SPCD}}
- run: spcd-check-project
- run: spcd-build-project
- run: spcd-browse-workspace
- run: spcd-synchronize
- uses: ./act/action
with:
arg_1: '"one"'
arg_2: >
[
"one",
"two",
]
arg_3: >
{
"one": 1,
"two": 2,
"three": 3,
}
- uses: ./act/synchronize
with:
source: output

11
render.py Executable file
View File

@@ -0,0 +1,11 @@
#! /usr/bin/env python3
"""Dummy build."""
from pathlib import Path
from rwx.fs import make_directory, write
if __name__ == "__main__":
out = Path(__file__).parent / "out" / "web"
make_directory(out)
write(out / "index.html", "prj.rwx.work")