dfgdsfg
All checks were successful
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-rootfs-archives (push) Successful in 8m39s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / push-archives-to-repo (push) Successful in 1m2s
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:30:11 -07:00
parent 551ef33a0e
commit fe5eb6b868

View File

@@ -99,6 +99,14 @@ jobs:
cp "$filepath" upload-repo/"$version_dir"/
done
- name: Copy sha256sums.txt to upload-repo
run: |
if [ -f sha256sums.txt ]; then
cp sha256sums.txt upload-repo/
else
echo "[WARNING] sha256sums.txt not found"
fi
- name: Commit and push archives if changed
id: commit_archives
run: |
@@ -107,8 +115,8 @@ jobs:
git config --global user.email "${{ env.GIT_EMAIL }}"
if git status --porcelain | grep .; then
git add **/*.tar.bz2
git commit -m "Update base images on $(date -u +'%Y-%m-%dT%H:%M:%SZ')"
git add **/*.tar.bz2 sha256sums.txt || true
git commit -m "Update base images and checksum on $(date -u +'%Y-%m-%dT%H:%M:%SZ')"
git push
echo "archives_changed=true" >> $GITHUB_OUTPUT
else