打包v3版本
continuous-integration/drone/push Build is passing Details

This commit is contained in:
李寻欢 2021-08-31 17:06:28 +08:00
parent d089b8a7ac
commit 35c6d434f0
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ steps:
password: l4rQkKdtIOlHKkTv
# auto_tag: true
tags:
- v2
- v3
when:
event: push
branch: master

View File

@ -106,11 +106,11 @@ func main() {
ipStr := strings.Join(getIps(), ",")
app.GET("/hello", func(context *gin.Context) {
context.String(http.StatusOK, "[GET]-[API]-[v2]\n"+ipStr)
context.String(http.StatusOK, "[GET]-[API]-[v3]\n"+ipStr)
})
app.POST("/hello", func(context *gin.Context) {
context.String(http.StatusOK, "[POST]-[API]-[v2]\n"+ipStr)
context.String(http.StatusOK, "[POST]-[API]-[v3]\n"+ipStr)
})
app.GET("/ip", func(context *gin.Context) {