Update .woodpecker.yml

This commit is contained in:
Santiago Lo Coco 2023-10-07 17:16:38 -03:00
parent b04a8996f8
commit 9f17cdb455
2 changed files with 21 additions and 9 deletions

View File

@ -6,16 +6,14 @@ steps:
image: alpine/git
secrets: [ cbtoken ]
commands:
- git fetch --no-tags origin +refs/heads/pages
- git remote set-url origin "https://$${CBTOKEN}@codeberg.org/slococo/calsais.git"
- git fetch --no-tags origin +refs/heads/master
- 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)"
- git switch pages
- git restore --source master -- install.sh
- mv install.sh index.html
- chmod 644 index.html
- rm -f install.sh
- shasum=$(sha256sum install.sh)
- oldShasum=$(grep -oP "^[[:alnum:]]{64}" README.md)
- [ "$shasum" = "$oldShasum" ] || sed -i "s/$oldShasum/$shasum/" README.md
- if [ -z "$(git status --porcelain)" ]; then exit 0; fi
- git add index.html
- git commit -m "Add changes from master branch"
- git add README.md
- git commit -m "Update sha256sum"
- git push

View File

@ -25,6 +25,20 @@ You can use `-d`, `-f` or `-s` to enable logging.
The script only supports UEFI boot mode.
## Checksum
If you want to verify the checksum of the file, run:
```
sha256sum calsais
```
And compare it with this:
```txt
39b81d9fd010886d15a57b2ce69652ad4531f3b040ef05357bc5b83e615bf0fc
```
## Contributing <a name="contributing"></a>
PRs are welcome.