mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-26 20:01:02 +00:00
PowerShell SHA256 command now emits lowercase
Previously it emitted uppercase hashes, which drone-exec didn't like.
This commit is contained in:
parent
8b17e6518e
commit
098e791ac9
1 changed files with 1 additions and 1 deletions
2
docs/build/secrets.md
vendored
2
docs/build/secrets.md
vendored
|
@ -61,5 +61,5 @@ f63561783e550ccd21663d13eaf6a4d252d84147 .drone.yml
|
||||||
Generate a checksum on Windows with powershell:
|
Generate a checksum on Windows with powershell:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ Get-FileHash .\.drone.yml -Algorithm SHA256
|
$ (Get-FileHash .\.drone.yml -Algorithm SHA256).Hash.ToLower()
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue