Skip to content

Commit

Permalink
contrib: publish pg_smtp_client 0.1.0 (#724)
Browse files Browse the repository at this point in the history
Co-authored-by: Vinícius Miguel <[email protected]>
  • Loading branch information
brianpursley and vrmiguel authored Jul 29, 2024
1 parent 1639133 commit 3c308ef
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
10 changes: 10 additions & 0 deletions contrib/pg_smtp_client/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
ARG PG_VERSION=16
ARG PGRX_VERSION=0.11.4

FROM quay.io/coredb/pgrx-builder:pg${PG_VERSION}-pgrx${PGRX_VERSION}

ARG EXTENSION_VERSION=0.1.0

RUN git clone --depth 1 --branch v${EXTENSION_VERSION} https://github.com/brianpursley/pg_smtp_client && \
cd pg_smtp_client && \
cargo pgrx package
15 changes: 15 additions & 0 deletions contrib/pg_smtp_client/Trunk.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[extension]
name = "pg_smtp_client"
version = "0.1.0"
repository = "https://github.com/brianpursley/pg_smtp_client"
license = "MIT"
description = "PostgreSQL extension to send email using SMTP"
homepage = "https://github.com/brianpursley/pg_smtp_client"
documentation = "https://github.com/brianpursley/pg_smtp_client"
categories = ["tooling_admin"]

[build]
postgres_version = "16"
platform = "linux/amd64"
dockerfile = "Dockerfile"
install_command = "cd pg_smtp_client && cargo pgrx install --release"

0 comments on commit 3c308ef

Please sign in to comment.