Compare commits

...

6 Commits

Author SHA1 Message Date
root 8b37ac5ceb info
Docker Deploy / build-and-deploy (push) Successful in 2m15s Details
2024-07-13 19:32:44 +08:00
root 4650d3b5f7 test
Docker Deploy / build-and-deploy (push) Successful in 1m36s Details
2024-07-13 19:23:38 +08:00
root 789b558548 更新 .drone.yml
Docker Deploy / build-and-deploy (push) Has been cancelled Details
2024-07-13 19:22:49 +08:00
root 0dda7ec192 更新 .drone.yml
Docker Deploy / build-and-deploy (push) Has been cancelled Details
2024-07-13 19:22:33 +08:00
root fdb45446a9 更新 .drone.yml
Docker Deploy / build-and-deploy (push) Successful in 1m52s Details
2024-07-13 16:39:01 +08:00
root 2ec95b8ce9 添加 .drone.yml
Docker Deploy / build-and-deploy (push) Successful in 3m2s Details
2024-07-13 16:13:21 +08:00
2 changed files with 10 additions and 1 deletions

9
.drone.yml Normal file
View File

@ -0,0 +1,9 @@
kind: pipeline
type: docker
name: greeting
steps:
- name: test
image: alpine
commands:
- echo hello world!!

View File

@ -17,7 +17,7 @@ func main() {
c.JSON(200, gin.H{
"message": "Hello "+Q,
})
fmt.Println("Hello "+Q)
fmt.Println("Hello "+Q+"……")
})
router.Run(":8080")
}