Compare commits
No commits in common. "3e494bc354bf6fa01bd75a6d47119d64c14c805e" and "a0a64a098f3146c51914afd12ab7c0ce52f5f1d5" have entirely different histories.
3e494bc354
...
a0a64a098f
2 changed files with 0 additions and 20 deletions
|
@ -44,16 +44,6 @@ def clone_project_branch() -> None:
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def install_actions(path: Path) -> None:
|
|
||||||
"""Make actions usable in workflows.
|
|
||||||
|
|
||||||
:param path: entry point file
|
|
||||||
:type path: Path
|
|
||||||
"""
|
|
||||||
step("Install actions")
|
|
||||||
Path("act").symlink_to(path.parent / "actions")
|
|
||||||
|
|
||||||
|
|
||||||
def install_commands(path: Path) -> None:
|
def install_commands(path: Path) -> None:
|
||||||
"""Make commands callable in the operating system.
|
"""Make commands callable in the operating system.
|
||||||
|
|
||||||
|
@ -123,7 +113,6 @@ def main(main_file: Path) -> None:
|
||||||
list_environment_variables()
|
list_environment_variables()
|
||||||
clone_project_branch()
|
clone_project_branch()
|
||||||
set_ssh()
|
set_ssh()
|
||||||
install_actions(main_file)
|
|
||||||
install_commands(main_file)
|
install_commands(main_file)
|
||||||
install_python_packages()
|
install_python_packages()
|
||||||
else:
|
else:
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
inputs:
|
|
||||||
source:
|
|
||||||
default: out
|
|
||||||
required: false
|
|
||||||
runs:
|
|
||||||
using: composite
|
|
||||||
steps:
|
|
||||||
- run: echo "synchronize"
|
|
||||||
- run: echo " source: ${INPUT_SOURCE}"
|
|
Loading…
Reference in a new issue