@@ -145,25 +145,25 @@ trigger_build_snyk_images() {
145145 fi
146146}
147147
148- trigger_build_dxt () {
149- echo " Triggering build-and-release workflow at mcp-dxt ..."
148+ trigger_build_agentic_integration () {
149+ echo " Triggering build-and-release workflow at agentic-integration-wrappers ..."
150150 echo " Version: $VERSION_TAG "
151151 echo " Release Channel: $RELEASE_CHANNEL "
152- response_file=$TMPDIR /trigger_build_dxt .txt
152+ response_file=$TMPDIR /trigger_build_agentic_integration .txt
153153 RESPONSE=$( curl -L \
154154 -X POST \
155155 -H " Accept: application/vnd.github+json" \
156156 -H " Authorization: Bearer $HAMMERHEAD_GITHUB_PAT " \
157157 -H " X-GitHub-Api-Version: 2022-11-28" \
158- https://api.github.com/repos/snyk/mcp-dxt /dispatches \
158+ https://api.github.com/repos/snyk/agentic-integration-wrappers /dispatches \
159159 -d " {\" event_type\" :\" cli_release\" , \" client_payload\" : {\" cli_version\" : \" $VERSION_TAG \" }}" \
160160 -w " %{http_code}" \
161161 -s \
162162 -o " $response_file " )
163163 if [ " $RESPONSE " -eq 204 ]; then
164- echo " Successfully triggered build-and-release workflow at mcp-dxt ."
164+ echo " Successfully triggered build-and-release workflow at agentic-integration-wrappers ."
165165 else
166- echo " Failed to trigger build-and-release workflow at mcp-dxt ."
166+ echo " Failed to trigger build-and-release workflow at agentic-integration-wrappers ."
167167 echo " Response status code: $RESPONSE "
168168 echo " Details:"
169169 cat $response_file
@@ -265,9 +265,9 @@ for arg in "${@}"; do
265265 elif [ " ${arg} " == " trigger-snyk-images" ]; then
266266 trigger_build_snyk_images
267267
268- # Trigger building DXT in mcp-dxt repository
269- elif [ " ${arg} " == " trigger_build_dxt " ]; then
270- trigger_build_dxt
268+ # Trigger building DXT in agentic-integration-wrappers repository
269+ elif [ " ${arg} " == " trigger_build_agentic_integration " ]; then
270+ trigger_build_agentic_integration
271271
272272 # Upload files to S3 bucket
273273 else
0 commit comments