Skip to content

Commit 288bde6

Browse files
committed
adding the build step
1 parent 5b08fd5 commit 288bde6

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
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: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ on:
1111

1212
permissions:
1313
contents: read
14-
packages: read
14+
packages: write
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)