forked from mirrors/homebox
reformat?
This commit is contained in:
parent
3aae71ee18
commit
6b1110b3c5
2 changed files with 6 additions and 3 deletions
6
.github/workflows/partial-publish.yaml
vendored
6
.github/workflows/partial-publish.yaml
vendored
|
@ -51,7 +51,8 @@ jobs:
|
|||
--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 .
|
||||
--platform linux/amd64,linux/arm64,linux/arm/v7 \
|
||||
.
|
||||
|
||||
- name: build release tagged the image
|
||||
if: ${{ inputs.release == true }}
|
||||
|
@ -62,4 +63,5 @@ jobs:
|
|||
--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 .
|
||||
--platform linux/amd64,linux/arm64,linux/arm/v7 \
|
||||
.
|
||||
|
|
3
.github/workflows/publish.yaml
vendored
3
.github/workflows/publish.yaml
vendored
|
@ -33,6 +33,7 @@ jobs:
|
|||
|
||||
publish-nightly:
|
||||
name: "Publish Nightly"
|
||||
if: ${{ github.event_name != 'release' }}
|
||||
needs:
|
||||
- backend-tests
|
||||
- frontend-tests
|
||||
|
@ -43,8 +44,8 @@ jobs:
|
|||
GH_TOKEN: ${{ secrets.CR_PAT }}
|
||||
|
||||
publish-tag:
|
||||
if: github.event_name == 'release'
|
||||
name: "Publish Tag"
|
||||
if: github.event_name == 'release'
|
||||
needs:
|
||||
- backend-tests
|
||||
- frontend-tests
|
||||
|
|
Loading…
Reference in a new issue