test
Some checks failed
Build and Push Teamspeak Images on Base Image Update / check-for-changes (push) Successful in 6s
Build and Push Teamspeak Images on Base Image Update / build-alpine (push) Successful in 6s
Build and Push Teamspeak Images on Base Image Update / build-debian (push) Successful in 10s
Build and Push Teamspeak Images on Base Image Update / build-basic (push) Successful in 10s
Build and Push Teamspeak Images on Base Image Update / generate-build-info (push) Failing after 4s
Build and Push Teamspeak Images on Base Image Update / generate-changelogs (push) Has been skipped

This commit is contained in:
2025-07-17 18:08:23 -07:00
parent 9d3caaf263
commit f691b0492a

View File

@@ -247,6 +247,15 @@ jobs:
}' > "$infofile"
done
- name: Copy build-info to repo
run: |
for version in alpine debian basic; do
if [ -f "$version/build-info.json" ]; then
mkdir -p "$GITHUB_WORKSPACE/$version"
cp "$version/build-info.json" "$GITHUB_WORKSPACE/$version/"
fi
done
- name: Commit and push build-info if changed
run: |
git config user.name "${{ secrets.GIT_USERNAME }}"