fix redmine url bug, build with drone docker plugin
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
55c168c2e8
commit
f3a3f2bc99
38
.drone.yml
38
.drone.yml
@ -1,36 +1,18 @@
|
|||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: docker
|
|
||||||
name: default
|
name: default
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: build and push
|
|
||||||
image: docker:dind
|
|
||||||
volumes:
|
|
||||||
- name: docker.sock
|
|
||||||
path: /var/run
|
|
||||||
environment:
|
|
||||||
CI_REGISTRY:
|
|
||||||
from_secret: CI_REGISTRY
|
|
||||||
CI_REGISTRY_USER:
|
|
||||||
from_secret: CI_REGISTRY_USER
|
|
||||||
CI_REGISTRY_PASSWORD:
|
|
||||||
from_secret: CI_REGISTRY_PASSWORD
|
|
||||||
CI_APP_IMAGE:
|
|
||||||
from_secret: CI_APP_IMAGE
|
|
||||||
commands:
|
|
||||||
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
|
|
||||||
- docker buildx build --push --platform linux/amd64 --tag $CI_APP_IMAGE --file Dockerfile .
|
|
||||||
when:
|
|
||||||
branch:
|
|
||||||
- master
|
|
||||||
|
|
||||||
services:
|
|
||||||
- name: docker
|
- name: docker
|
||||||
image: docker:dind
|
image: plugins/docker
|
||||||
privileged: true
|
settings:
|
||||||
volumes:
|
username:
|
||||||
- name: docker.sock
|
from_secret: CI_REGISTRY_USER
|
||||||
path: /var/run
|
password:
|
||||||
|
from_secret: CI_REGISTRY_PASSWORD
|
||||||
|
repo:
|
||||||
|
from_secret: CI_APP_IMAGE
|
||||||
|
tags:
|
||||||
|
- latest
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
event:
|
event:
|
||||||
|
@ -42,9 +42,9 @@ func (h *Poll) Handle(wh telego.Update) error {
|
|||||||
}
|
}
|
||||||
loc := h.Localizer(user.Language)
|
loc := h.Localizer(user.Language)
|
||||||
_ = loc
|
_ = loc
|
||||||
if len(wh.Message.Entities) != 1 ||
|
if len(wh.Message.Entities) == 0 ||
|
||||||
(len(wh.Message.Entities) == 1 && wh.Message.Entities[0].Type != telego.EntityTypeBotCommand) ||
|
(len(wh.Message.Entities) > 0 && wh.Message.Entities[0].Type != telego.EntityTypeBotCommand) ||
|
||||||
(len(wh.Message.Entities) == 1 && wh.Message.Entities[0].Offset != 0) {
|
(len(wh.Message.Entities) > 0 && wh.Message.Entities[0].Offset != 0) {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user