Compare commits

..

No commits in common. "763b6c33f4d6825d67527d30d8fa286f14476d67" and "8cdd9d80207393f0e82ed28022276176019411b6" have entirely different histories.

3 changed files with 0 additions and 41 deletions

View file

@ -1,17 +0,0 @@
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

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