diff --git a/.gitea/workflows/base-build.yml b/.gitea/workflows/base-build.yml index 7224714..ecde236 100644 --- a/.gitea/workflows/base-build.yml +++ b/.gitea/workflows/base-build.yml @@ -21,7 +21,7 @@ env: VERSIONS: "buster bullseye bookworm trixie" # OUTPUT_DIR: /mnt/unraid_output/act_runner_output OUTPUT_DIR: ./output -######################################## + jobs: build-and-push-rootfs-archives: runs-on: docker-build @@ -76,7 +76,7 @@ jobs: 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 + run: rm -rfv upload-repo/*/*.tar.bz2 - name: Copy new archives to upload-repo run: | @@ -107,7 +107,7 @@ jobs: if git status --porcelain | grep .; then 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 commit -m "Update base images and checksum on $(date -u +'%Y-%m-%dT%H:%M:%SZ') [skip ci]" git push echo "archives_changed=true" >> $GITHUB_OUTPUT else @@ -117,7 +117,8 @@ jobs: build-and-push-docker-images: needs: build-and-push-rootfs-archives - if: needs.build-and-push-rootfs-archives.outputs.archives_changed == 'true' + if: always() + # if: needs.build-and-push-rootfs-archives.outputs.archives_changed == 'true' runs-on: docker-build steps: - name: Checkout source