From 56b0931b6cf3d2847056dcb4e78b78831e6b9d87 Mon Sep 17 00:00:00 2001 From: daniele Date: Mon, 8 May 2023 22:28:41 +0300 Subject: [PATCH] fix: add missing workflow --- .github/workflows/partial-publish.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/partial-publish.yaml b/.github/workflows/partial-publish.yaml index 4b80f19..698665c 100644 --- a/.github/workflows/partial-publish.yaml +++ b/.github/workflows/partial-publish.yaml @@ -64,3 +64,16 @@ jobs: --build-arg COMMIT=$(git rev-parse HEAD) \ --build-arg BUILD_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \ --platform linux/amd64,linux/arm64,linux/arm/v7 . + + - name: build release tagged the rootless image + if: ${{ inputs.release == true }} + run: | + docker build --push --no-cache \ + --tag ghcr.io/hay-kot/homebox:nightly-rootless \ + --tag ghcr.io/hay-kot/homebox:latest-rootless \ + --tag ghcr.io/hay-kot/homebox:${{ inputs.tag }}-rootless \ + --build-arg VERSION=${{ inputs.tag }} \ + --build-arg COMMIT=$(git rev-parse HEAD) \ + --build-arg BUILD_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \ + --platform linux/amd64,linux/arm64,linux/arm/v7 \ + --file Dockerfile.rootless .