Skip to content

Commit 05dbcc0

Browse files
author
Julien Ruaux
committed
build: Switched Docker Hub org to fieldengineering
1 parent 80c5747 commit 05dbcc0

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/early-access.yml

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

.github/workflows/release.yml

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

9999
- name: Deploy
100100
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=395
22

33
FROM docker.io/library/maven:3.8.6-openjdk-18 AS builder
4-
WORKDIR /root/trino-redisearch
5-
COPY . /root/trino-redisearch
4+
WORKDIR /root/redis-sql
5+
COPY . /root/redis-sql
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/trino-redisearch/target/trino-redisearch-*/* /usr/lib/trino/plugin/redisearch/
11+
COPY --from=builder --chown=trino:trino /root/redis-sql/target/redis-sql-*/* /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: jruaux/trino-redisearch
13+
image: fieldengineering/redis-sql
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,7 +1,7 @@
11
project:
22
name: redis-sql
3-
description: SQL interface for RediSearch
4-
longDescription: SQL interface and JDBC driver for RediSearch
3+
description: Trino Connector for RediSearch
4+
longDescription: Trino Connector for RediSearch
55
links:
66
homepage: https://github.com/redis-field-engineering/redis-sql
77
authors:
@@ -56,7 +56,7 @@ announce:
5656
message: '🚀 Redis SQL {{projectVersion}} has been released! {{releaseNotesUrl}}'
5757

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

0 commit comments

Comments
 (0)