We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbefa53 commit c42c5feCopy full SHA for c42c5fe
1 file changed
.github/workflows/build-and-push-tutorial-agent.yml
@@ -198,9 +198,9 @@ jobs:
198
BUILD_ARGS="--manifest ${{ matrix.agent_path }}/manifest.yaml --registry ${REGISTRY} --tag ${VERSION_TAG} --platforms linux/amd64 --repository-name ${REPOSITORY_NAME}"
199
200
if [ "$SHOULD_PUSH" = "true" ]; then
201
- agentex agents build $BUILD_ARGS --push
+ agentex agents build "$BUILD_ARGS" --push
202
echo "✅ Successfully built and pushed: ${REGISTRY}/${REPOSITORY_NAME}:${VERSION_TAG}"
203
else
204
- agentex agents build $BUILD_ARGS
+ agentex agents build "$BUILD_ARGS"
205
echo "✅ Build validation successful for: ${{ matrix.agent_path }}"
206
fi
0 commit comments