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
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user