From 08195983a82f398703f1c98db92df9191448764b Mon Sep 17 00:00:00 2001 From: Casey Waldren Date: Wed, 17 Jul 2024 10:53:31 -0700 Subject: [PATCH] ci: add debian example to release please (#107) Add debian example to `release-please` extra files. Also add in a LuaRocks shield to README. --- README.md | 1 + examples/hello-debian/Dockerfile | 2 +- release-please-config.json | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2c5751f..2b83581 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ LaunchDarkly Server-Side SDK for Lua [![Actions Status](https://github.com/launchdarkly/lua-server-sdk-private/actions/workflows/ci.yml/badge.svg)](https://github.com/launchdarkly/lua-server-sdk/actions/workflows/ci.yml) [![Documentation](https://img.shields.io/static/v1?label=GitHub+Pages&message=API+reference&color=00add8)](https://launchdarkly.github.io/lua-server-sdk) +[![LuaRocks](https://img.shields.io/luarocks/v/launchdarkly/launchdarkly-server-sdk)](https://luarocks.org/modules/launchdarkly/launchdarkly-server-sdk) LaunchDarkly overview ------------------------- diff --git a/examples/hello-debian/Dockerfile b/examples/hello-debian/Dockerfile index c189b84..8a58416 100644 --- a/examples/hello-debian/Dockerfile +++ b/examples/hello-debian/Dockerfile @@ -1,7 +1,7 @@ FROM debian:bookworm # {{ x-release-please-start-version }} -ARG VERSION=2.1.0 +ARG VERSION=2.1.1 # {{ x-release-please-end }} ARG CPP_SDK_VERSION=3.5.2 diff --git a/release-please-config.json b/release-please-config.json index a0c7ca9..cf1ce8b 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -10,7 +10,8 @@ "scripts/update-versions.sh", "scripts/compile.sh", "examples/hello-haproxy/Dockerfile", - "examples/hello-nginx/Dockerfile" + "examples/hello-nginx/Dockerfile", + "examples/hello-debian/Dockerfile" ] } }