There was an error while loading. Please reload this page.
1 parent aeb63cd commit 78a0a37Copy full SHA for 78a0a37
1 file changed
.github/workflows/build-sign-release.yml
@@ -53,13 +53,15 @@ jobs:
53
sudo apt-get update
54
sudo apt-get install gnupg
55
56
- - name: 🖨️ Build PDFs
+ - name: 🖨️ Build & Hash PDFs
57
env:
58
CI: true
59
run: |
60
python scripts/build_guide_pdf.py --${{ inputs.build_mode || 'both' }}
61
for f in ./export/*.pdf; do
62
- echo "Hashing: $f"; sha256sum "$f" >> export/sha256sums.txt; done
+ echo "sha256sums: $f"; sha256sum "$f" >> export/sha256sums.txt; done
63
+ for f in ./export/*.pdf; do
64
+ echo "b2sums: $f"; b2sum "$f" >> export/b2sums.txt; done
65
66
- name: 🦠 Upload PDFs to VirusTotal
67
uses: crazy-max/ghaction-virustotal@v5
0 commit comments