Skip to content

Commit 266941f

Browse files
author
Julien Ruaux
committed
build: Updated project name
1 parent 3b68f15 commit 266941f

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.github/workflows/early-access.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,4 @@ jobs:
9191
uses: docker/build-push-action@v3
9292
with:
9393
push: ${{ github.event_name != 'pull_request' }}
94-
tags: fieldengineering/redis-sql:early-access
94+
tags: fieldengineering/redis-sql-trino:early-access

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
uses: docker/build-push-action@v3
9696
with:
9797
push: ${{ github.event_name != 'pull_request' }}
98-
tags: fieldengineering/redis-sql:latest,fieldengineering/redis-sql:${{ github.event.inputs.version }}
98+
tags: fieldengineering/redis-sql-trino:latest,fieldengineering/redis-sql-trino:${{ github.event.inputs.version }}
9999

100100
- name: Deploy
101101
uses: peaceiris/actions-gh-pages@v3

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
ARG TRINO_VERSION=403
22

33
FROM docker.io/library/maven:3.8.6-openjdk-18 AS builder
4-
WORKDIR /root/redis-sql
5-
COPY . /root/redis-sql
4+
WORKDIR /root/redis-sql-trino
5+
COPY . /root/redis-sql-trino
66
ENV MAVEN_FAST_INSTALL="-DskipTests -Dair.check.skip-all=true -Dmaven.javadoc.skip=true -B -q -T C1"
77
RUN mvn package $MAVEN_FAST_INSTALL
88

99
FROM trinodb/trino:${TRINO_VERSION}
1010

11-
COPY --from=builder --chown=trino:trino /root/redis-sql/target/redis-sql-*/* /usr/lib/trino/plugin/redisearch/
11+
COPY --from=builder --chown=trino:trino /root/redis-sql-trino/target/redis-sql-trino-*/* /usr/lib/trino/plugin/redisearch/
1212

1313
USER root:root
1414
RUN apt-get update

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
restart: always
1111

1212
trino:
13-
image: fieldengineering/redis-sql
13+
image: fieldengineering/redis-sql-trino
1414
hostname: trino
1515
container_name: trino
1616
ports:

jreleaser.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
project:
2-
name: redis-sql
2+
name: redis-sql-trino
33
description: Trino Connector for RediSearch
44
longDescription: Trino Connector for RediSearch
55
links:
6-
homepage: https://github.com/redis-field-engineering/redis-sql
6+
homepage: https://github.com/redis-field-engineering/redis-sql-trino
77
authors:
88
- Julien Ruaux
99
license: MIT
@@ -56,7 +56,7 @@ announce:
5656
message: '🚀 Redis SQL {{projectVersion}} has been released! {{releaseNotesUrl}}'
5757

5858
distributions:
59-
redis-sql:
59+
redis-sql-trino:
6060
artifacts:
6161
- path: target/{{distributionName}}-{{projectVersion}}.zip
6262
transform: '{{distributionName}}-{{projectEffectiveVersion}}.zip'

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
</parent>
1010

1111
<groupId>com.redis</groupId>
12-
<artifactId>redis-sql</artifactId>
12+
<artifactId>redis-sql-trino</artifactId>
1313
<version>0.2.10-SNAPSHOT</version>
14-
<name>Redis SQL</name>
14+
<name>Redis SQL Trino</name>
1515
<description>Trino connector for RediSearch</description>
1616
<packaging>trino-plugin</packaging>
1717
<url>https://github.com/${github.owner}/${github.repo}</url>
@@ -24,7 +24,7 @@
2424
</scm>
2525
<properties>
2626
<github.owner>redis-field-engineering</github.owner>
27-
<github.repo>redis-sql</github.repo>
27+
<github.repo>redis-sql-trino</github.repo>
2828

2929
<lettucemod.version>3.2.0</lettucemod.version>
3030
<lettuce.version>6.2.2.RELEASE</lettuce.version>
@@ -482,7 +482,7 @@
482482
</goals>
483483
<configuration>
484484
<backend>pdf</backend>
485-
<outputFile>redis-sql-${project.version}.pdf</outputFile>
485+
<outputFile>redis-sql-trino-${project.version}.pdf</outputFile>
486486
<attributes>
487487
<doctype>book</doctype>
488488
<title-page></title-page>

0 commit comments

Comments
 (0)