Use sed
ci/woodpecker/push/woodpecker Pipeline failed Details

This commit is contained in:
Santiago Lo Coco 2023-10-07 17:26:57 -03:00
parent 059e64f39e
commit 07fe6a9a4b
1 changed files with 1 additions and 3 deletions

View File

@ -10,9 +10,7 @@ steps:
- git remote set-url origin "https://$${CBTOKEN}@git.slc.ar/slococo/calsais.git"
- git config --local user.name "$(git log --format=%an | head -n 1)"
- git config --local user.email "$(git log --format=%ae | head -n 1)"
- shasum=$(sha256sum install.sh)
- oldShasum=$(perl -ne 'print if /^[[:alnum:]]{64}/' README.md)
- if ! [ "$shasum" = "$oldShasum" ]; then sed -i "s/$oldShasum/$shasum/" README.md; fi
- sed -i "s/^[A-Za-z0-9]\{64\}/$(sha256sum install.sh)/" README.md
- if [ -z "$(git status --porcelain)" ]; then exit 0; fi
- git add README.md
- git commit -m "Update sha256sum"