Skip to content

Commit

Permalink
Document checking releases hashes (#2418)
Browse files Browse the repository at this point in the history
  • Loading branch information
casey authored Oct 8, 2024
1 parent d195d77 commit 66dbaa6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ jobs:
runs-on: ubuntu-latest

needs:
- prerelease
- package
- prerelease

steps:
- name: Download Release Archives
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,16 @@ to determine the latest version of `just` to install, and those API calls are
rate-limited on a per-IP basis. To make `install.sh` more reliable in such
circumstances, pass a specific tag to install with `--tag`.

[Releases](https://github.com/casey/just/releases) include a `SHA256SUM` file
which can be used to verify the integrity of pre-built binary archives.

To verify a release, download the pre-built binary archive along with the
`SHA256SUM` file and run:

```sh
shasum --algorithm 256 --ignore-missing --check SHA256SUMS
```

### GitHub Actions

`just` can be installed on GitHub Actions in a few ways.
Expand Down

0 comments on commit 66dbaa6

Please sign in to comment.