with semantic-release
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Kasper Juul Hermansen 2022-08-21 16:21:11 +02:00
parent 3bf282807c
commit 7de2d776fc
Signed by: kjuulh
GPG Key ID: 0F95C140730F2F23

View File

@ -40,8 +40,24 @@ steps:
from_secret: docker_password from_secret: docker_password
SSH_KEY: SSH_KEY:
from_secret: gitea_id_ed25519 from_secret: gitea_id_ed25519
- name: push_tags
image: kasperhermansen/drone-semantic-release:latest
pull: always
volumes:
- name: ssh
path: /root/.ssh/
- name: dockersock
path: /var/run
commands:
- semantic-release --no-ci
environment:
DOCKER_BUILDKIT: 1
SSH_KEY:
from_secret: gitea_id_ed25519
depends_on: depends_on:
- "load_secret" - build
- name: send telegram notification - name: send telegram notification
image: appleboy/drone-telegram image: appleboy/drone-telegram
settings: settings:
@ -51,6 +67,7 @@ steps:
format: markdown format: markdown
depends_on: depends_on:
- build - build
- push_tags
when: when:
status: [failure, success] status: [failure, success]