Compare commits
10 commits
5e077c7770
...
8a70088a52
Author | SHA1 | Date | |
---|---|---|---|
8a70088a52 | |||
373bb5092c | |||
828028fffe | |||
6d1300e165 | |||
e65b2f9ffa | |||
3f798f1679 | |||
da3bbc1ca2 | |||
152bd49b66 | |||
8e59433d07 | |||
a6bc21964a |
7 changed files with 41 additions and 11 deletions
|
@ -1,16 +1,21 @@
|
||||||
on: [push]
|
on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
job:
|
job:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
runs-on: bookworm
|
container:
|
||||||
|
image: ${{vars.DOCKER}}debian:bookworm
|
||||||
steps:
|
steps:
|
||||||
|
- name: spcd
|
||||||
- name: cd-bootstrap
|
|
||||||
env:
|
env:
|
||||||
CD: '${{secrets.cd}}'
|
SPCD: ${{vars.SPCD}}
|
||||||
run: eval '${{vars.cd}}'
|
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: spcd-check-project
|
||||||
|
- run: spcd-build-project
|
||||||
- run: cd-synchronize 'in'
|
- run: spcd-browse-workspace
|
||||||
|
- run: spcd-synchronize in
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
marc
|
BIN
in/web/.well-known/openpgpkey/hu/marc
Normal file
BIN
in/web/.well-known/openpgpkey/hu/marc
Normal file
Binary file not shown.
0
in/web/.well-known/openpgpkey/policy
Normal file
0
in/web/.well-known/openpgpkey/policy
Normal file
24
render.py
Executable file
24
render.py
Executable 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}",
|
||||||
|
)
|
Loading…
Add table
Add a link
Reference in a new issue