From 4460fb51e65a147284941f051bc624252b018170 Mon Sep 17 00:00:00 2001 From: Florian Kinder Date: Sat, 12 Jul 2025 13:02:56 +0900 Subject: [PATCH] feat: Add rootless image building to CI pipeline MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update docker-build.yml workflow to build rootless variants - Rootless images are built after regular images with -rootless suffix - Both use the same multi-architecture build process - Triggered automatically when buildinfo.json changes 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/docker-build.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 534fba9..951fd0e 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -26,4 +26,12 @@ jobs: DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} run: | - ./build.py --push-tags --multiarch \ No newline at end of file + ./build.py --push-tags --multiarch + + - name: build and push rootless images + if: ${{ env.DOCKER_USERNAME != '' && env.DOCKER_PASSWORD != '' }} + env: + DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} + DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} + run: | + ./build-rootless.py --push-tags --multiarch \ No newline at end of file