Skip to content

Commit

Permalink
Merge pull request #498 from freedomofpress/verify-checksums-ci
Browse files Browse the repository at this point in the history
Verify sha256sums.txt and signatures in CI
  • Loading branch information
rocodes authored Apr 24, 2024
2 parents 6263f7d + a33fde8 commit 0c9c397
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,21 @@ jobs:
run: |
. ./.venv/bin/activate
make test
checksums:
runs-on: ubuntu-latest
container: debian:bookworm
steps:
- name: Bootstrap Debian system package dependencies
run: |
apt-get update && apt-get install --yes --no-install-recommends make git git-lfs gnupg ca-certificates
- uses: actions/checkout@v4
with:
lfs: true
- name: Verify checksums and signatures
run: |
git config --global --add safe.directory '*'
./scripts/verify-sha256sum-signature securedrop-client
./scripts/verify-sha256sum-signature securedrop-export
./scripts/verify-sha256sum-signature securedrop-log
./scripts/verify-sha256sum-signature securedrop-proxy

0 comments on commit 0c9c397

Please sign in to comment.