mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-12-22 12:18:09 +00:00
Tag docker images with latest tag in dockerize workflow on release
This commit is contained in:
parent
ded168dae3
commit
df15f00243
1 changed files with 2 additions and 0 deletions
2
.github/workflows/dockerize.yml
vendored
2
.github/workflows/dockerize.yml
vendored
|
@ -135,6 +135,7 @@ jobs:
|
|||
run: |
|
||||
docker buildx imagetools create \
|
||||
-t ghcr.io/${{ github.repository }}:${{ env.DOCKER_IMAGE_TAG }} \
|
||||
-t ghcr.io/${{ github.repository }}:${{ github.ref_type == 'tag' && 'latest' || env.DOCKER_IMAGE_TAG }} \
|
||||
ghcr.io/${{ github.repository }}:${{ env.DOCKER_IMAGE_TAG }}-amd64 \
|
||||
ghcr.io/${{ github.repository }}:${{ env.DOCKER_IMAGE_TAG }}-arm64
|
||||
|
||||
|
@ -143,5 +144,6 @@ jobs:
|
|||
run: |
|
||||
docker buildx imagetools create \
|
||||
-t ghcr.io/${{ github.repository }}-cloud:${{ env.DOCKER_IMAGE_TAG }} \
|
||||
-t ghcr.io/${{ github.repository }}-cloud:${{ github.ref_type == 'tag' && 'latest' || env.DOCKER_IMAGE_TAG }} \
|
||||
ghcr.io/${{ github.repository }}-cloud:${{ env.DOCKER_IMAGE_TAG }}-amd64 \
|
||||
ghcr.io/${{ github.repository }}-cloud:${{ env.DOCKER_IMAGE_TAG }}-arm64
|
||||
|
|
Loading…
Reference in a new issue