Add changes to syncBranches.yml

This commit is contained in:
Santiago Lo Coco 2021-12-23 22:23:43 -03:00 committed by GitHub
parent 5d0f76dced
commit 2cc5863098
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 9 deletions

View File

@ -38,18 +38,13 @@ jobs:
git config --local user.name "$(git log --format=%an | head -n 1)"
git config --local user.email "$(git log --format=%ae | head -n 1)"
mv cocoArtifact/install.sh index.html
git status
rm -rf cocoArtifact
if [ -z "$(git status --porcelain)" ]; then
echo "Acá funciona?"
return
fi
git add index.html
rm -rf cocoArtifact
gStatus=$(git status)
if echo $gStatus | grep -q "Changes to be committed"; then
echo "Hay cambios sin commitear"
git commit -m "Add changes from master branch"
git push
fi
git commit -m "Add changes from master branch"
git push
- uses: geekyeggo/delete-artifact@v1
with: