Skip to content

Commit e516475

Browse files
committed
feat: release v2.3.0
1 parent 06dea8a commit e516475

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

.github/workflows/release.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- "release/2.2"
7+
- "release/2.3"
78
paths:
89
- 'rockspecs/**'
910

@@ -51,4 +52,4 @@ jobs:
5152
LUAROCKS_TOKEN: ${{ secrets.LUAROCKS_TOKEN }}
5253
run: |
5354
luarocks install dkjson
54-
luarocks upload rockspecs/lua-resty-healthcheck-api7-${{ steps.release_env.outputs.version_withou_v }}-0.rockspec --api-key=${LUAROCKS_TOKEN}
55+
luarocks upload rockspecs/lua-resty-healthcheck-api7-xrpc-${{ steps.release_env.outputs.version_withou_v }}-0.rockspec --api-key=${LUAROCKS_TOKEN}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
package = "lua-resty-healthcheck-api7-xrpc"
2+
version = "2.3.0-0"
3+
source = {
4+
url = "git://github.com/api7/lua-resty-healthcheck-xrpc",
5+
tag = "v2.3.0"
6+
}
7+
8+
description = {
9+
summary = "Healthchecks for OpenResty to check upstream service status",
10+
detailed = [[
11+
lua-resty-healthcheck is a module that can check upstream service
12+
availability by sending requests and validating responses at timed
13+
intervals.
14+
]],
15+
homepage = "https://github.com/api7/lua-resty-healthcheck-xrpc",
16+
license = "Apache 2.0"
17+
}
18+
19+
dependencies = {
20+
"lua-resty-worker-events = 1.0.0"
21+
}
22+
build = {
23+
type = "builtin",
24+
modules = {
25+
["resty.healthcheck"] = "lib/resty/healthcheck.lua",
26+
["resty.healthcheck.utils"] = "lib/resty/healthcheck/utils.lua"
27+
}
28+
}

0 commit comments

Comments
 (0)