Compare commits

...

10 commits

Author SHA1 Message Date
763b6c33f4
output
All checks were successful
/ job (push) Successful in 4m38s
2025-06-08 15:57:32 +02:00
dd1ba4cee3
in 2025-06-08 14:57:55 +02:00
672e59495f
render 2025-06-08 14:57:53 +02:00
77038e9782
runs-on 2025-06-08 14:57:52 +02:00
2098a67a6e
out/web 2024-10-13 23:41:32 +02:00
955406d39d
build 2024-07-30 21:33:20 +02:00
08138d21a2
fixes 2024-07-30 20:30:41 +02:00
ffcecaa496
spcd 2024-07-30 20:27:58 +02:00
219b58c762
docker 2024-07-22 15:07:48 +02:00
4229ccd6f9
workflow 2024-03-25 21:49:14 +01:00
3 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,17 @@
on: [push]
jobs:
job:
runs-on: ubuntu-latest
container:
image: ${{vars.DOCKER}}debian:bookworm
steps:
- name: spcd
env:
SPCD: ${{vars.SPCD}}
SPCD_SSH_HOSTS: ${{vars.SPCD_SSH_HOSTS}}
SPCD_SSH_KEY: ${{secrets.SPCD_SSH_KEY}}
run: ${{vars.SPCD}}
- run: spcd-build-project
- run: spcd-browse-workspace
- run: spcd-synchronize

24
render.py Executable file
View file

@ -0,0 +1,24 @@
#! /usr/bin/env python3
"""Build resume."""
from os import sep
from pathlib import Path
from rwx import fs
from rwx.ps import run
if __name__ == "__main__":
root = Path(__file__).resolve().parent
root_input = root / "in"
root_output = root / "out"
fs.wipe(root_output)
fs.make_directory(root_output)
run(
"rsync",
"--archive",
"--partial",
"--progress",
"--verbose",
f"{root_input}{sep}",
f"{root_output}{sep}",
)