Compare commits
No commits in common. "8a70088a5226b1a502aac8e3be726e5dc8ba0923" and "5e077c7770e44a3e04d18808cc4d1b73b2588395" have entirely different histories.
8a70088a52
...
5e077c7770
7 changed files with 12 additions and 42 deletions
|
@ -1,21 +1,16 @@
|
||||||
on: [push]
|
on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
job:
|
job:
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container:
|
|
||||||
image: ${{vars.DOCKER}}debian:bookworm
|
|
||||||
steps:
|
|
||||||
- name: spcd
|
|
||||||
env:
|
|
||||||
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: spcd-check-project
|
runs-on: bookworm
|
||||||
- run: spcd-build-project
|
|
||||||
- run: spcd-browse-workspace
|
steps:
|
||||||
- run: spcd-synchronize in
|
|
||||||
|
- name: cd-bootstrap
|
||||||
|
env:
|
||||||
|
CD: '${{secrets.cd}}'
|
||||||
|
run: eval '${{vars.cd}}'
|
||||||
|
|
||||||
|
- run: cd-clone-branch
|
||||||
|
|
||||||
|
- run: cd-synchronize 'in'
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
marc
|
|
Binary file not shown.
24
render.py
24
render.py
|
@ -1,24 +0,0 @@
|
||||||
#! /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