action
This commit is contained in:
parent
c77674afa4
commit
c7c0d7c7d7
1 changed files with 9 additions and 0 deletions
|
@ -4,11 +4,20 @@ import os
|
|||
from pathlib import Path
|
||||
|
||||
from rwx import ps
|
||||
from rwx.log import stream as log
|
||||
|
||||
from spcd.ci import project, projects
|
||||
from spcd.shell import env
|
||||
|
||||
|
||||
def action() -> None:
|
||||
"""Display action inputs."""
|
||||
prefix = ""
|
||||
for variable, value in sorted(projects.environment.items()):
|
||||
if variable.startswith(prefix):
|
||||
log.info("%s = %s", variable, value)
|
||||
|
||||
|
||||
def synchronize(source: str | None = None, target: str | None = None) -> None:
|
||||
"""Synchronize output towards a target.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue