add json flag to avoid issues

This commit is contained in:
Michael Duong 2023-09-29 13:30:49 +00:00
parent c6ef7b514e
commit ddab96236c

View file

@ -48,7 +48,7 @@ jobs:
git tag -a ${new_tag} -m "Registering new Major Version"
git push origin ${new_tag}
gto show > MODEL_REGISTRY.md
gto show --json > MODEL_REGISTRY.md
git add .
git commit -m "Update Registry"
git push
@ -86,7 +86,7 @@ jobs:
git tag -a ${new_tag} -m "Registering new Minor Version"
git push origin ${new_tag}
gto show > MODEL_REGISTRY.md
gto show --json > MODEL_REGISTRY.md
git add .
git commit -m "Update Registry"
git push
@ -124,7 +124,7 @@ jobs:
git tag -a ${new_tag} -m "Registering new Patch Version"
git push origin ${new_tag}
gto show > MODEL_REGISTRY.md
gto show --json > MODEL_REGISTRY.md
git add .
git commit -m "Update Registry"
git push
@ -207,7 +207,7 @@ jobs:
git fetch --all
git pull
gto show > MODEL_REGISTRY.md
gto show --json > MODEL_REGISTRY.md
git add .
git commit -m "Update Registry"
git push origin master