diff --git a/.github/workflows/partial-publish.yaml b/.github/workflows/partial-publish.yaml index 698665c..837a3b5 100644 --- a/.github/workflows/partial-publish.yaml +++ b/.github/workflows/partial-publish.yaml @@ -44,7 +44,7 @@ jobs: env: CR_PAT: ${{ secrets.GH_TOKEN }} - - name: build nightly the image + - name: build nightly image if: ${{ inputs.release == false }} run: | docker build --push --no-cache \ @@ -53,6 +53,16 @@ jobs: --build-arg=BUILD_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \ --platform=linux/amd64,linux/arm64,linux/arm/v7 . + - name: build nightly-rootless image + if: ${{ inputs.release == false }} + run: | + docker build --push --no-cache \ + --tag=ghcr.io/hay-kot/homebox:${{ inputs.tag }}-rootless \ + --build-arg=COMMIT=$(git rev-parse HEAD) \ + --build-arg=BUILD_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \ + --file Dockerfile.rootless \ + --platform=linux/amd64,linux/arm64,linux/arm/v7 . + - name: build release tagged the image if: ${{ inputs.release == true }} run: |