Tweaking some of the build to function

Signed-off-by: nopeitsnothing <no@anonymousplanet.org>
This commit is contained in:
nopeitsnothing
2026-04-20 03:38:27 -04:00
parent aeb63cd7ba
commit 78a0a37ee8
+4 -2
View File
@@ -53,13 +53,15 @@ jobs:
sudo apt-get update sudo apt-get update
sudo apt-get install gnupg sudo apt-get install gnupg
- name: 🖨️ Build PDFs - name: 🖨️ Build & Hash PDFs
env: env:
CI: true CI: true
run: | run: |
python scripts/build_guide_pdf.py --${{ inputs.build_mode || 'both' }} python scripts/build_guide_pdf.py --${{ inputs.build_mode || 'both' }}
for f in ./export/*.pdf; do for f in ./export/*.pdf; do
echo "Hashing: $f"; sha256sum "$f" >> export/sha256sums.txt; done echo "sha256sums: $f"; sha256sum "$f" >> export/sha256sums.txt; done
for f in ./export/*.pdf; do
echo "b2sums: $f"; b2sum "$f" >> export/b2sums.txt; done
- name: 🦠 Upload PDFs to VirusTotal - name: 🦠 Upload PDFs to VirusTotal
uses: crazy-max/ghaction-virustotal@v5 uses: crazy-max/ghaction-virustotal@v5