mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-07 07:55:16 +02:00
fix: renamed check_pipecat_sync.sh
This commit is contained in:
parent
8c5e9b4263
commit
75af6cfa9c
3 changed files with 4 additions and 4 deletions
2
.github/workflows/check-pipecat-sync.yml
vendored
2
.github/workflows/check-pipecat-sync.yml
vendored
|
|
@ -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
|
||||
4
.github/workflows/docker-image.yml
vendored
4
.github/workflows/docker-image.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
Loading…
Add table
Add a link
Reference in a new issue