Compare commits

...

10 commits

Author SHA1 Message Date
8a70088a52
output
All checks were successful
/ job (push) Successful in 5m57s
2025-06-08 15:59:01 +02:00
373bb5092c
render 2025-06-08 14:32:21 +02:00
828028fffe
runs-on 2025-06-08 14:30:30 +02:00
6d1300e165
in/web 2024-10-13 21:18:16 +02:00
e65b2f9ffa
in/.well-known 2024-10-13 19:40:43 +02:00
3f798f1679
workflow 2024-10-13 19:36:46 +02:00
da3bbc1ca2
wkd 2024-05-29 20:59:48 +02:00
152bd49b66
cd 2024-03-25 21:00:56 +01:00
8e59433d07
workspace 2024-03-25 15:36:57 +01:00
a6bc21964a
lint 2024-03-24 19:53:14 +01:00
7 changed files with 41 additions and 11 deletions

View file

@ -1,16 +1,21 @@
on: [push]
jobs:
job:
runs-on: bookworm
runs-on: ubuntu-latest
container:
image: ${{vars.DOCKER}}debian:bookworm
steps:
- name: cd-bootstrap
- name: spcd
env:
CD: '${{secrets.cd}}'
run: eval '${{vars.cd}}'
SPCD: ${{vars.SPCD}}
SPCD_GIT_RWX: ${{vars.SPCD_GIT_RWX}}
SPCD_GIT_SPCD: ${{vars.SPCD_GIT_SPCD}}
SPCD_SSH_HOSTS: ${{vars.SPCD_SSH_HOSTS}}
SPCD_SSH_KEY: ${{secrets.SPCD_SSH_KEY}}
SPCD_TXT_LOCALE: ${{vars.SPCD_TXT_LOCALE}}
run: ${{vars.SPCD}}
- run: cd-clone-branch
- run: cd-synchronize 'in'
- run: spcd-check-project
- run: spcd-build-project
- run: spcd-browse-workspace
- run: spcd-synchronize in

View file

@ -0,0 +1 @@
marc

Binary file not shown.

View file

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}",
)