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
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:
parent
3e494bc354
commit
9cb23cfff1
1 changed files with 5 additions and 1 deletions
|
@ -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:
|
||||||
|
|
Loading…
Reference in a new issue