Skip to content

Commit 0f37ef7

Browse files
committed
adding the build step
1 parent 5b08fd5 commit 0f37ef7

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

.github/workflows/build-agentex.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ name: Release AgentEx
33

44
on:
55
workflow_call:
6-
commit-sha:
7-
description: "Commit SHA to release (defaults to latest commit on main)"
8-
required: true
9-
type: string
10-
default: github.sha
6+
inputs:
7+
commit-sha:
8+
description: "Commit SHA to release (defaults to latest commit on main)"
9+
required: true
10+
type: string
11+
default: github.sha
1112

1213
permissions:
1314
contents: read # This is needed for checking out code

.github/workflows/integration-tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ permissions:
1414
packages: read
1515

1616
jobs:
17-
# build-images:
18-
# name: "Build AgentEx Images"
19-
# uses: ./.github/workflows/build-agentex.yml
20-
# with:
21-
# commit-sha: ${{ inputs.commit-sha || 'main' }}
22-
#
17+
build-images:
18+
name: "Build AgentEx Images"
19+
uses: ./.github/workflows/build-agentex.yml
20+
with:
21+
commit-sha: ${{ inputs.commit-sha || 'main' }}
22+
2323
pull-agent-images:
2424
name: "Pull AgentEx Images"
2525
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)