Fix bug in yml

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

View File

@ -39,12 +39,11 @@ jobs:
git config --local user.email "$(git log --format=%ae | head -n 1)"
mv cocoArtifact/install.sh index.html
rm -rf cocoArtifact
if [ -z "$(git status --porcelain)" ]; then
return
if [ ! -z "$(git status --porcelain)" ]; then
git add index.html
git commit -m "Add changes from master branch"
git push
fi
git add index.html
git commit -m "Add changes from master branch"
git push
- uses: geekyeggo/delete-artifact@v1
with: