Skip to content

Commit 776c906

Browse files
ayuskauskaslockwobr
authored andcommitted
fix(agent/ci): no toLower in github
1 parent 28c225d commit 776c906

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/agent-ci.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,9 +224,10 @@ jobs:
224224
225225
- name: Run operator-agent tests
226226
env:
227-
AGENT_IMAGE: ${{ format('{0}/{1}/agent:{2}', toLower(env.REGISTRY), toLower(env.IMAGE_NAME), needs.compute-metadata.outputs.agent-image-tag) }}
227+
AGENT_IMAGE: ${{ format('{0}/{1}/agent:{2}', env.REGISTRY, github.repository, needs.compute-metadata.outputs.agent-image-tag) }}
228228
run: |
229229
cd operator
230+
export AGENT_IMAGE="${AGENT_IMAGE,,}"
230231
echo "Testing with agent image: ${AGENT_IMAGE}"
231232
make build-cli
232233
make setup-kind-cluster operator-agent-tests

0 commit comments

Comments
 (0)