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 .