Update .woodpecker.yml
This commit is contained in:
parent
b04a8996f8
commit
9f17cdb455
|
@ -6,16 +6,14 @@ steps:
|
||||||
image: alpine/git
|
image: alpine/git
|
||||||
secrets: [ cbtoken ]
|
secrets: [ cbtoken ]
|
||||||
commands:
|
commands:
|
||||||
- git fetch --no-tags origin +refs/heads/pages
|
- git fetch --no-tags origin +refs/heads/master
|
||||||
- git remote set-url origin "https://$${CBTOKEN}@codeberg.org/slococo/calsais.git"
|
- 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.name "$(git log --format=%an | head -n 1)"
|
||||||
- git config --local user.email "$(git log --format=%ae | head -n 1)"
|
- git config --local user.email "$(git log --format=%ae | head -n 1)"
|
||||||
- git switch pages
|
- shasum=$(sha256sum install.sh)
|
||||||
- git restore --source master -- install.sh
|
- oldShasum=$(grep -oP "^[[:alnum:]]{64}" README.md)
|
||||||
- mv install.sh index.html
|
- [ "$shasum" = "$oldShasum" ] || sed -i "s/$oldShasum/$shasum/" README.md
|
||||||
- chmod 644 index.html
|
|
||||||
- rm -f install.sh
|
|
||||||
- if [ -z "$(git status --porcelain)" ]; then exit 0; fi
|
- if [ -z "$(git status --porcelain)" ]; then exit 0; fi
|
||||||
- git add index.html
|
- git add README.md
|
||||||
- git commit -m "Add changes from master branch"
|
- git commit -m "Update sha256sum"
|
||||||
- git push
|
- git push
|
||||||
|
|
14
README.md
14
README.md
|
@ -25,6 +25,20 @@ You can use `-d`, `-f` or `-s` to enable logging.
|
||||||
|
|
||||||
The script only supports UEFI boot mode.
|
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>
|
## Contributing <a name="contributing"></a>
|
||||||
PRs are welcome.
|
PRs are welcome.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue