formatting

This commit is contained in:
Hayden 2022-10-11 09:15:57 -08:00
parent 1a69265601
commit 3198800329

View file

@ -45,19 +45,21 @@ jobs:
CR_PAT: ${{ secrets.GH_TOKEN }} CR_PAT: ${{ secrets.GH_TOKEN }}
- name: build nightly the image - name: build nightly the image
if: ${{ inputs.release == false }}
run: | run: |
docker build --push \ 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 COMMIT=$(git rev-parse HEAD) \
--build-arg BUILD_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \ --build-arg BUILD_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
--platform linux/amd64,linux/arm64,linux/arm/v7 . --platform linux/amd64,linux/arm64,linux/arm/v7 .
# - name: build release tagged the image - name: build release tagged the image
# run: | if: ${{ inputs.release == true }}
# docker build --push \ run: |
# --tag ghcr.io/hay-kot/homebox:nightly \ docker build --push \
# --tag ghcr.io/hay-kot/homebox:latest \ --tag ghcr.io/hay-kot/homebox:nightly \
# --tag ghcr.io/hay-kot/homebox:{{ inputs.tag }} \ --tag ghcr.io/hay-kot/homebox:latest \
# --build-arg COMMIT=$(git rev-parse HEAD) \ --tag ghcr.io/hay-kot/homebox:{{ inputs.tag }} \
# --build-arg BUILD_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \ --build-arg COMMIT=$(git rev-parse HEAD) \
# --platform linux/amd64,linux/arm64,linux/arm/v7 . --build-arg BUILD_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
--platform linux/amd64,linux/arm64,linux/arm/v7 .