diff --git a/.gitignore b/.gitignore index 8b6f4440..62980a49 100644 --- a/.gitignore +++ b/.gitignore @@ -41,4 +41,5 @@ node_modules artifacts/ # IDE extras -.vscode/ \ No newline at end of file +.vscode/ +build/.build_venv diff --git a/build/template_check.sh b/build/template_check.sh index fb1013b5..c80db78b 100755 --- a/build/template_check.sh +++ b/build/template_check.sh @@ -8,8 +8,13 @@ pip install pyyaml CURRENT_DEPLOY=$(md5sum deploy.yml) +echo "$(go version)" +echo "$(cat deploy.yml)" + make build-template +echo "$(cat deploy.yml)" + if [[ $CURRENT_DEPLOY != $(md5sum deploy.yml) ]]; then echo "Deployment template not updated. Please run make build-template and recommit" exit 1