dsfhsd
Some checks failed
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-and-push-rootfs-archives (push) Has been cancelled
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-and-push-docker-images (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-07-08 20:45:24 -07:00
parent 923230ae74
commit 1dd36ffafe
2 changed files with 3 additions and 3 deletions

View File

@@ -63,7 +63,7 @@ jobs:
run: |
IFS=' ' read -r -a versions <<< "$VERSIONS"
for version in "${versions[@]}"; do
path="/output/$version/debian-$version.tar.bz2"
path="${{ env.OUTPUT_DIR }}/$version/debian-$version.tar.bz2"
if [[ ! -f "$path" ]]; then
echo "[ERROR] Missing archive: $path"
exit 1
@@ -74,7 +74,8 @@ jobs:
- name: Clone upload repo
run: |
git clone "https://${{ env.GIT_USERNAME }}:${{ secrets.GIT_TOKEN || secrets.GIT_PASSWORD }}@gitea.fithwum.tech/fithwum/debian-base.git" upload-repo
GIT_CREDENTIAL="${{ secrets.GIT_TOKEN || secrets.GIT_PASSWORD }}"
git clone "https://${{ env.GIT_USERNAME }}:${GIT_CREDENTIAL}@gitea.fithwum.tech/fithwum/debian-base.git" upload-repo
- name: Clean old archives in upload-repo
run: rm -rf upload-repo/*/*.tar.bz2

View File

@@ -29,7 +29,6 @@ locale-gen
update-locale LANG=en_US.UTF-8
apt-get remove --purge --allow-remove-essential pinentry-curses whiptail kmod iptables iproute2 dmidecode || true
apt-get clean
apt-get install -f
find /var/lib/apt/lists/ -type f -delete
EOF