browse/target,source
Some checks failed
/ alpine (push) Successful in 44s
/ debian (push) Successful in 1m16s
/ ubuntu (push) Successful in 1m22s
/ arch (push) Successful in 1m48s
/ opensuse (push) Successful in 1m57s
/ rocky (push) Blocked by required conditions
/ fedora (push) Has been cancelled
/ alma (push) Has been cancelled

This commit is contained in:
Marc Beninca 2024-10-14 23:27:57 +02:00
parent 2ddbc2d090
commit dbb27ac0ef
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -51,11 +51,14 @@ def install_actions(path: Path) -> None:
:type path: Path :type path: Path
""" """
step("Install actions") step("Install actions")
source = Path(project.root) / "act" source = project.root / "act"
target = path.parent / "actions" target = path.parent / "actions"
log.info(source) log.info(source)
log.info(target) log.info(target)
browse(target)
browse(project.root)
source.symlink_to(target) source.symlink_to(target)
browse(project.root)
def install_commands(path: Path) -> None: def install_commands(path: Path) -> None: