Compare commits

..

No commits in common. "8a70088a5226b1a502aac8e3be726e5dc8ba0923" and "5e077c7770e44a3e04d18808cc4d1b73b2588395" have entirely different histories.

7 changed files with 12 additions and 42 deletions

View file

@ -1,21 +1,16 @@
on: [push]
jobs:
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
- run: spcd-build-project
- run: spcd-browse-workspace
- run: spcd-synchronize in
runs-on: bookworm
steps:
- name: cd-bootstrap
env:
CD: '${{secrets.cd}}'
run: eval '${{vars.cd}}'
- run: cd-clone-branch
- run: cd-synchronize 'in'

View file

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