fix: renamed check_pipecat_sync.sh

This commit is contained in:
Sabiha Khan 2025-09-30 19:21:03 +05:30
parent 8c5e9b4263
commit 75af6cfa9c
3 changed files with 4 additions and 4 deletions

View file

@ -20,4 +20,4 @@ jobs:
run: chmod +x scripts/*.sh
- name: Check pipecat version synchronization
run: ./scripts/check-pipecat-sync.sh
run: ./scripts/check_pipecat_sync.sh

View file

@ -31,10 +31,10 @@ jobs:
- name: Check pipecat version sync
id: version-check
run: |
chmod +x scripts/check-pipecat-sync.sh
chmod +x scripts/check_pipecat_sync.sh
# Capture the output for version details
if OUTPUT=$(./scripts/check-pipecat-sync.sh 2>&1); then
if OUTPUT=$(./scripts/check_pipecat_sync.sh 2>&1); then
echo "version_mismatch=false" >> $GITHUB_OUTPUT
else
echo "version_mismatch=true" >> $GITHUB_OUTPUT

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bash
#
# check-pipecat-sync.sh
# check_pipecat_sync.sh
#
# Verifies that the pipecat submodule commit SHA matches the one in Dockerfile.
# Used by CI/CD to ensure versions are synchronized before merging.