diff --git a/.github/workflows/check-pipecat-sync.yml b/.github/workflows/check-pipecat-sync.yml index 490d230..5828c8b 100644 --- a/.github/workflows/check-pipecat-sync.yml +++ b/.github/workflows/check-pipecat-sync.yml @@ -20,4 +20,4 @@ jobs: run: chmod +x scripts/*.sh - name: Check pipecat version synchronization - run: ./scripts/check-pipecat-sync.sh \ No newline at end of file + run: ./scripts/check_pipecat_sync.sh \ No newline at end of file diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index db2aef1..ac00cba 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -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 diff --git a/scripts/check-pipecat-sync.sh b/scripts/check_pipecat_sync.sh similarity index 99% rename from scripts/check-pipecat-sync.sh rename to scripts/check_pipecat_sync.sh index 1dacd4f..0a558cd 100755 --- a/scripts/check-pipecat-sync.sh +++ b/scripts/check_pipecat_sync.sh @@ -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.