From 319880032972cd75a61b69182bb2cd2c2428c538 Mon Sep 17 00:00:00 2001 From: Hayden <64056131+hay-kot@users.noreply.github.com> Date: Tue, 11 Oct 2022 09:15:57 -0800 Subject: [PATCH] formatting --- .github/workflows/partial-publish.yaml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/.github/workflows/partial-publish.yaml b/.github/workflows/partial-publish.yaml index c0cd7e3..db1ed3b 100644 --- a/.github/workflows/partial-publish.yaml +++ b/.github/workflows/partial-publish.yaml @@ -45,19 +45,21 @@ jobs: CR_PAT: ${{ secrets.GH_TOKEN }} - name: build nightly the image + if: ${{ inputs.release == false }} run: | docker build --push \ - --tag ghcr.io/hay-kot/homebox:{{ inputs.tag }} \ + --tag ghcr.io/hay-kot/homebox:{{ 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 . - # - name: build release tagged the image - # run: | - # docker build --push \ - # --tag ghcr.io/hay-kot/homebox:nightly \ - # --tag ghcr.io/hay-kot/homebox:latest \ - # --tag ghcr.io/hay-kot/homebox:{{ 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 . + - name: build release tagged the image + if: ${{ inputs.release == true }} + run: | + docker build --push \ + --tag ghcr.io/hay-kot/homebox:nightly \ + --tag ghcr.io/hay-kot/homebox:latest \ + --tag ghcr.io/hay-kot/homebox:{{ 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 .