Update .woodpecker.yml
ci/woodpecker/push/woodpecker Pipeline failed Details

This commit is contained in:
Santiago Lo Coco 2023-10-07 17:17:19 -03:00
parent 9f17cdb455
commit ae83c1ece1
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ steps:
- git config --local user.email "$(git log --format=%ae | head -n 1)"
- shasum=$(sha256sum install.sh)
- oldShasum=$(grep -oP "^[[:alnum:]]{64}" README.md)
- [ "$shasum" = "$oldShasum" ] || sed -i "s/$oldShasum/$shasum/" README.md
- if ! [ "$shasum" = "$oldShasum" ]; then sed -i "s/$oldShasum/$shasum/" README.md; fi
- if [ -z "$(git status --porcelain)" ]; then exit 0; fi
- git add README.md
- git commit -m "Update sha256sum"