test build info update & changelog 7
All checks were successful
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-and-push-rootfs-archives (push) Successful in 12m9s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-changelogs (push) Successful in 2m14s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-and-push-docker-images (push) Successful in 2m41s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-build-info (push) Successful in 1m45s

This commit is contained in:
2025-07-09 13:06:55 -07:00
parent 312c285f4c
commit 966d63c452

View File

@@ -190,6 +190,11 @@ jobs:
- name: Create temporary changelog workspace
run: mkdir changelogs
- name: Clone upload repo
run: |
GIT_CREDENTIAL="${{ secrets.GIT_TOKEN || secrets.GIT_PASSWORD }}"
git clone --depth=3 "https://${{ env.GIT_USERNAME }}:${GIT_CREDENTIAL}@gitea.fithwum.tech/fithwum/debian-base.git" upload-repo
- name: Generate changelogs from git log
run: |
for version in $VERSIONS; do
@@ -201,11 +206,6 @@ jobs:
git log -n 10 --pretty=format:"- %s (%an)" >> "$changelog"
done
- name: Clone upload repo
run: |
GIT_CREDENTIAL="${{ secrets.GIT_TOKEN || secrets.GIT_PASSWORD }}"
git clone --depth=3 "https://${{ env.GIT_USERNAME }}:${GIT_CREDENTIAL}@gitea.fithwum.tech/fithwum/debian-base.git" upload-repo
- name: Copy generated changelogs into repo
run: |
for version in $VERSIONS; do