From 9f17cdb455cbe41060c0a22271619954f9f62e03 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sat, 7 Oct 2023 17:16:38 -0300 Subject: [PATCH] Update .woodpecker.yml --- .woodpecker.yml | 16 +++++++--------- README.md | 14 ++++++++++++++ 2 files changed, 21 insertions(+), 9 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index be26a14..c95378c 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -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 diff --git a/README.md b/README.md index cb7c231..7216cce 100644 --- a/README.md +++ b/README.md @@ -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 PRs are welcome.