Skip to content

Commit 2953694

Browse files
sweatybridgedarora
authored andcommitted
chore: standardize gotrue release version
1 parent 83801b2 commit 2953694

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

ansible/manifest-playbook.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# currently, we upload gotrue, adminapi, postgrest
1818
- name: gotrue - download commit archive
1919
get_url:
20-
url: "https://github.com/supabase/gotrue/releases/download/{{ gotrue_release }}/gotrue-{{ gotrue_release }}-arm64.tar.gz"
20+
url: "https://github.com/supabase/gotrue/releases/download/v{{ gotrue_release }}/gotrue-v{{ gotrue_release }}-arm64.tar.gz"
2121
dest: /tmp/gotrue.tar.gz
2222
checksum: "{{ gotrue_release_checksum }}"
2323
timeout: 60
@@ -36,7 +36,7 @@
3636

3737
- name: gotrue - pack archive
3838
shell: |
39-
cd /tmp && tar -cJf gotrue-{{ gotrue_release }}-arm64.tar.xz gotrue
39+
cd /tmp && tar -cJf gotrue-v{{ gotrue_release }}-arm64.tar.xz gotrue
4040
4141
- name: PostgREST - download ubuntu binary archive (arm)
4242
get_url:
@@ -66,7 +66,7 @@
6666
aws s3 cp /tmp/{{ item.file }} s3://{{ internal_artifacts_bucket }}/upgrades/{{ item.service }}/{{ item.file }}
6767
with_items:
6868
- service: gotrue
69-
file: gotrue-{{ gotrue_release }}-arm64.tar.xz
69+
file: gotrue-v{{ gotrue_release }}-arm64.tar.xz
7070
- service: postgrest
7171
file: postgrest-{{ postgrest_release }}-arm64.tar.xz
7272
- service: supabase-admin-api

ansible/tasks/setup-gotrue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
- name: gotrue - download commit archive
2121
get_url:
22-
url: "https://github.com/supabase/gotrue/releases/download/{{ gotrue_release }}/gotrue-{{ gotrue_release }}-{{ arch }}.tar.gz"
22+
url: "https://github.com/supabase/gotrue/releases/download/v{{ gotrue_release }}/gotrue-v{{ gotrue_release }}-{{ arch }}.tar.gz"
2323
dest: /tmp/gotrue.tar.gz
2424
checksum: "{{ gotrue_release_checksum }}"
2525

ansible/vars.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ postgrest_release: "10.2.0"
1414
postgrest_arm_release_checksum: sha1:93404f97cc5079d8412ffa23c415a394503d2f24
1515
postgrest_x86_release_checksum: sha1:78cb66b297eee56d84a0a46869a4be9f388cddc7
1616

17-
gotrue_release: v2.66.0
17+
gotrue_release: 2.66.0
1818
gotrue_release_checksum: sha1:e6d0a4e29b22431eca57273fed7831b5417152f6
1919

2020
aws_cli_release: "2.2.7"

docker/all-in-one/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ FROM postgrest/postgrest:v${postgrest_release} as pgrst
5858
####################
5959
# Install GoTrue
6060
####################
61-
FROM supabase/gotrue:${gotrue_release} as gotrue
61+
FROM supabase/gotrue:v${gotrue_release} as gotrue
6262

6363
####################
6464
# Install Kong

0 commit comments

Comments
 (0)