dsfgdsfg
All checks were successful
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-rootfs-archives (push) Successful in 8m40s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / push-archives-to-repo (push) Successful in 1m1s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-and-push-docker-images (push) Has been skipped
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-changelogs (push) Has been skipped
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-build-info (push) Has been skipped

This commit is contained in:
2025-07-07 09:58:16 -07:00
parent fe5eb6b868
commit 92cc1d41a5

View File

@@ -41,14 +41,13 @@ jobs:
- name: Calculate SHA256 checksums
run: |
rm -f sha256sums.txt
for version in buster bullseye bookworm trixie docker-build; do
tarball="${version}/debian-${version}.tar.bz2"
for tarball in */debian-*.tar.bz2; do
if [[ -f "$tarball" ]]; then
checksum=$(sha256sum "$tarball" | awk '{print $1}')
echo "$checksum $tarball" >> sha256sums.txt
echo "[INFO] SHA256 for $tarball: $checksum"
else
echo "[WARN] Archive not found for $version at $tarball"
echo "[WARN] File not found: $tarball"
fi
done