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
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:
@@ -99,6 +99,14 @@ jobs:
|
|||||||
cp "$filepath" upload-repo/"$version_dir"/
|
cp "$filepath" upload-repo/"$version_dir"/
|
||||||
done
|
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
|
- name: Commit and push archives if changed
|
||||||
id: commit_archives
|
id: commit_archives
|
||||||
run: |
|
run: |
|
||||||
@@ -107,8 +115,8 @@ jobs:
|
|||||||
git config --global user.email "${{ env.GIT_EMAIL }}"
|
git config --global user.email "${{ env.GIT_EMAIL }}"
|
||||||
|
|
||||||
if git status --porcelain | grep .; then
|
if git status --porcelain | grep .; then
|
||||||
git add **/*.tar.bz2
|
git add **/*.tar.bz2 sha256sums.txt || true
|
||||||
git commit -m "Update base images on $(date -u +'%Y-%m-%dT%H:%M:%SZ')"
|
git commit -m "Update base images and checksum on $(date -u +'%Y-%m-%dT%H:%M:%SZ')"
|
||||||
git push
|
git push
|
||||||
echo "archives_changed=true" >> $GITHUB_OUTPUT
|
echo "archives_changed=true" >> $GITHUB_OUTPUT
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user