From ac586a3bad6a423b5ecab85aa09f8cd55c2875f2 Mon Sep 17 00:00:00 2001
From: Sheogorath <sheogorath@shivering-isles.com>
Date: Wed, 28 Feb 2024 00:26:20 +0100
Subject: [PATCH] refactor(spilo-vectorrs): Rework release tagging

---
 images/splio-vectorrs/.release  | 2 +-
 images/splio-vectorrs/Earthfile | 9 ++++++---
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/images/splio-vectorrs/.release b/images/splio-vectorrs/.release
index 08084eb05..51cc74622 100644
--- a/images/splio-vectorrs/.release
+++ b/images/splio-vectorrs/.release
@@ -1 +1 @@
-release=15-3.0-p1-r2
+release=2
diff --git a/images/splio-vectorrs/Earthfile b/images/splio-vectorrs/Earthfile
index d563883b5..85ce044d7 100644
--- a/images/splio-vectorrs/Earthfile
+++ b/images/splio-vectorrs/Earthfile
@@ -4,10 +4,13 @@ container:
     FROM ghcr.io/zalando/spilo-15:3.0-p1
     ARG registry=quay.io/shivering-isles/splio-vectorrs
     COPY .release ./
-    ARG tag=$(awk -F'=' '$1 == "release" {print $2}' .release)
+    # renovate: datasource=github-releases depName=tensorchord/pgvecto.rs
+    ARG PG_VECTORS_VERSION=v0.2.0
+    ENV PG_VERSION=$(pg_config --version | sed -e 's/PostgreSQL //' -e 's/\..*//')
+    ARG tag=$PG_VERSION-$(echo $PATRONIVERSION | cut -d'.' -f 1-2)-pg${PG_VECTORS_VERSION}-r$(awk -F'=' '$1 == "release" {print $2}' .release)
     ARG latest=false
-    ARG VECTORS_DEB="./vectors-pg15_amd64.deb"
-    RUN curl -L https://github.com/tensorchord/pgvecto.rs/releases/download/v0.2.0/vectors-pg15_0.2.0_amd64.deb > "$VECTORS_DEB"
+    ARG VECTORS_DEB="./vectors-pg${PG_VERSION}_amd64.deb"
+    RUN curl -L https://github.com/tensorchord/pgvecto.rs/releases/download/${PG_VECTORS_VERSION}/vectors-pg${PG_VERSION}_$(echo $PG_VECTORS_VERSION  | sed -e 's/^v//')_amd64.deb > "$VECTORS_DEB"
     RUN apt install "$VECTORS_DEB"
     RUN rm "$VECTORS_DEB"
     DO ../.utils/+LABEL --image=postfix --version=main
-- 
GitLab