Skip to content

Commit 58a71c2

Browse files
committed
add v prefix to docker versions
1 parent 6f81bb1 commit 58a71c2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/manual_prod_build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
images: |
2424
supabase/realtime
2525
tags: |
26-
type=raw,value=${{ github.event.inputs.docker_tag }}_${{ env.arch }}
26+
type=raw,value=v${{ github.event.inputs.docker_tag }}_${{ env.arch }}
2727
2828
- uses: docker/setup-buildx-action@v2
2929

@@ -57,7 +57,7 @@ jobs:
5757
images: |
5858
supabase/realtime
5959
tags: |
60-
type=raw,value=${{ github.event.inputs.docker_tag }}_${{ env.arch }}
60+
type=raw,value=v${{ github.event.inputs.docker_tag }}_${{ env.arch }}
6161
6262
- uses: docker/login-action@v2
6363
with:
@@ -97,7 +97,7 @@ jobs:
9797

9898
- name: Merge multi-arch manifests for custom output
9999
run: |
100-
docker buildx imagetools create -t supabase/realtime:${{ github.event.inputs.docker_tag }} \
100+
docker buildx imagetools create -t supabase/realtime:v${{ github.event.inputs.docker_tag }} \
101101
supabase/realtime@${{ needs.docker_x86_release.outputs.image_digest }} \
102102
supabase/realtime@${{ needs.docker_arm_release.outputs.image_digest }}
103103
@@ -124,5 +124,5 @@ jobs:
124124
with:
125125
src: docker.io/supabase/realtime:v${{ github.event.inputs.docker_tag }}
126126
dst: |
127-
public.ecr.aws/supabase/realtime:v${{ github.event.inputs.docker_tag }}
128-
ghcr.io/supabase/realtime:v${{ github.event.inputs.docker_tag }}
127+
public.ecr.aws/supabase/realtime:${{ github.event.inputs.docker_tag }}
128+
ghcr.io/supabase/realtime:v${{ github.event.inputs.docker_tag }}

0 commit comments

Comments
 (0)