diff options
author | EuAndreh <eu@euandre.org> | 2025-03-09 14:01:06 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-03-09 17:03:32 -0300 |
commit | db7511ebd0cc9910db5a60ee7ab3b45a109d9b1e (patch) | |
tree | ea5220619a4de67c7076d56c402b98a677bbcf8e | |
parent | src/cicd: Remove early exit (diff) | |
download | cicd-db7511ebd0cc9910db5a60ee7ab3b45a109d9b1e.tar.gz cicd-db7511ebd0cc9910db5a60ee7ab3b45a109d9b1e.tar.xz |
src/cicd: Add unique buiuld id
-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 |