diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 95a9b6d..8f1dd29 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -68,7 +68,11 @@ jobs: # This is needed so that a manifest is created, and we can have the same # docker container on both x86_64 and arm64. platforms: linux/amd64,linux/arm64 - tags: ${{ env.VERSION }} + tags: + # This is for rust-vmm-ci to reference + - ${{ env.VERSION }} + # This is for developers/users to use + - ${{ env.IMAGE_NAME }}:latest cache-from: type=gha cache-to: type=gha,mode=max @@ -125,7 +129,11 @@ jobs: file: Dockerfile.riscv64 push: ${{ github.event_name != 'pull_request' }} platforms: linux/amd64 - tags: ${{ env.VERSION }}-riscv + tags: + # This is for rust-vmm-ci to reference + - ${{ env.VERSION }}-riscv + # This is for developers/users to use + - ${{ env.IMAGE_NAME }}:latest-riscv cache-from: type=gha cache-to: type=gha,mode=max