dfghdsfghfgdh
Some checks failed
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / Docker prune (vm-docker-build2) (push) Successful in 3s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / Build RootFS Archives (trixie) (push) Failing after 6m17s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / Build & Push Docker Images (bookworm) (push) Has been cancelled
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / Build RootFS Archives (bookworm) (push) Has been cancelled
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / Build & Push Docker Images (bullseye) (push) Has been cancelled
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / Build RootFS Archives (bullseye) (push) Has been cancelled
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / Build & Push Docker Images (trixie) (push) Has been cancelled
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-changelogs (push) Has been cancelled
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-build-info (push) Has been cancelled

This commit is contained in:
2025-12-20 15:04:59 -08:00
parent 7da3a8ea71
commit 02c50f7873

View File

@@ -200,8 +200,19 @@ jobs:
- name: Update sha256sums
run: |
cd upload-repo
sed -i "/debian-${{ matrix.version }}.tar.bz2/d" sha256sums.txt 2>/dev/null || true
sha256sum "$VERSION/debian-$VERSION.tar.bz2" >> sha256sums.txt
VERSION=${{ matrix.version }}
TAR="../output/$VERSION/debian-$VERSION.tar.bz2"
# Remove old entry
sed -i "/debian-$VERSION.tar.bz2/d" sha256sums.txt 2>/dev/null || true
if [[ ! -f "$TAR" ]]; then
echo "[ERROR] Tarball not found at $TAR"
exit 1
fi
# Add new sha256
sha256sum "$TAR" >> sha256sums.txt
- name: Commit and push if changed
id: commit_archives