source,target
Some checks failed
/ alpine (push) Failing after 25s
/ debian (push) Failing after 1m1s
/ ubuntu (push) Failing after 1m7s
/ opensuse (push) Blocked by required conditions
/ fedora (push) Blocked by required conditions
/ alma (push) Blocked by required conditions
/ rocky (push) Blocked by required conditions
/ arch (push) Has been cancelled

This commit is contained in:
Marc Beninca 2024-10-14 22:55:39 +02:00
parent 3e494bc354
commit 9cb23cfff1
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

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