Skip to content

Commit b10c78e

Browse files
authored
Create build-and-push-tutorial-agent.yml
1 parent 433fc39 commit b10c78e

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build and Push Tutorial Agent
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
agent_path:
7+
description: "Path to the agent directory (e.g., examples/tutorials/10_agentic/00_base/000_hello_acp)"
8+
required: true
9+
type: string
10+
version_tag:
11+
description: "Version tag for the agent build (e.g., v1.0.0, latest)"
12+
required: true
13+
type: string
14+
default: "latest"
15+
16+
workflow_call:
17+
inputs:
18+
agent_path:
19+
description: "Path to the agent directory"
20+
required: true
21+
type: string
22+
version_tag:
23+
description: "Version tag for the agent build"
24+
required: true
25+
type: string
26+
default: "latest"

0 commit comments

Comments
 (0)