test
Some checks failed
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-rootfs-archives (push) Failing after 8m3s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / push-archives-to-repo (push) Has been skipped
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 08:50:34 -07:00
parent a51ed09f3b
commit 7ac3dd8b9e

View File

@@ -41,20 +41,21 @@ jobs:
- name: Calculate SHA256 checksums
run: |
rm -f sha256sums.txt
for tarball in */rootfs-*.tar.bz2; do
for version in buster bullseye bookworm trixie docker-build; do
tarball="${version}/debian-${version}.tar.bz2"
if [[ -f "$tarball" ]]; then
checksum=$(sha256sum "$tarball" | awk '{print $1}')
echo "$checksum $tarball" >> sha256sums.txt
echo "[INFO] SHA256 for $tarball: $checksum"
else
echo "[WARN] File not found: $tarball"
echo "[WARN] Archive not found for $version at $tarball"
fi
done
- name: List output archives
run: |
echo "[INFO] Looking for tarballs in workspace..."
find . -name '*.tar.bz2' -ls
find . -name '*.tar.bz2' -exec ls -lh {} \;
- name: Upload SHA256 checksums
uses: actions/upload-artifact@v4