diff options
| -rwxr-xr-x | src/cicd | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -39,12 +39,15 @@ eval "$(assert-arg -- "$ACTION" 'ACTION')" shift -for r in "$@"; do +for repo in "$@"; do + id="$(uuid)" cat <<-EOF | q cicd-inbox in - repo $r + repo $repo + id $id now $(now) deploy $DEPLOY version $VERSION refname $REFNAME EOF + printf 'Enqueued with id %s for %s\n' "$repo" "$id" done |
