Added notify-release step to Drone pipeline.

This commit is contained in:
Fabio Manganiello 2023-08-06 11:08:01 +02:00
parent 7a15c7c749
commit ed192faab2
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 23 additions and 0 deletions

View File

@ -184,3 +184,26 @@ steps:
- apk add --update --no-cache py3-twine
- python setup.py sdist bdist_wheel
- twine upload dist/platypush-$(python setup.py --version).tar.gz
- name: notify-release
image: python:3.11-alpine
environment:
WORKER_RPC_SECRET:
from_secret: worker_rpc_secret
when:
event:
- tag
depends_on:
- tests
- docs
- update-pip-package
- update-arch-packages
commands:
- apk add --update --no-cache curl
- |
curl --silent -XPOST \
-H "X-Token: $WORKER_RPC_SECRET" \
"https://worker.ci-cd.platypush.tech/hook/notify-platypush-release?version=$(python setup.py --version)"