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
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:
parent
2ddbc2d090
commit
dbb27ac0ef
1 changed files with 4 additions and 1 deletions
|
@ -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:
|
||||||
|
|
Loading…
Reference in a new issue