mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
fix: update template file extension in validation workflow
- Changed the expected template file from 'template.yml' to 'template.toml' in the GitHub Actions validation workflow to reflect recent changes in file format.
This commit is contained in:
parent
0f16376f98
commit
d21f87f42c
4
.github/workflows/validate.yml
vendored
4
.github/workflows/validate.yml
vendored
@ -28,7 +28,7 @@ jobs:
|
||||
TEMPLATE_NAME=$(basename "$dir")
|
||||
|
||||
COMPOSE_FILE="$dir/docker-compose.yml"
|
||||
TEMPLATE_FILE="$dir/template.yml"
|
||||
TEMPLATE_FILE="$dir/template.toml"
|
||||
|
||||
if [ ! -f "$COMPOSE_FILE" ]; then
|
||||
echo "❌ Missing docker-compose.yml in $TEMPLATE_NAME"
|
||||
@ -36,7 +36,7 @@ jobs:
|
||||
fi
|
||||
|
||||
if [ ! -f "$TEMPLATE_FILE" ]; then
|
||||
echo "❌ Missing template.yml in $TEMPLATE_NAME"
|
||||
echo "❌ Missing template.toml in $TEMPLATE_NAME"
|
||||
ERROR=1
|
||||
fi
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user