mirror of
https://github.com/hay-kot/homebox.git
synced 2024-12-18 13:06:32 +00:00
?!?!?!?
This commit is contained in:
parent
2dc765efdf
commit
1a69265601
1 changed files with 14 additions and 16 deletions
30
.github/workflows/partial-publish.yaml
vendored
30
.github/workflows/partial-publish.yaml
vendored
|
@ -45,21 +45,19 @@ 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 }}
|
||||
--build-arg COMMIT=$(git rev-parse HEAD)
|
||||
--build-arg BUILD_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
|
||||
run: |
|
||||
docker build --push \
|
||||
--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 .
|
||||
# - 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 .
|
||||
|
|
Loading…
Reference in a new issue