Browse Source
ci: add telegram notify to build release workflow
pull/5427/head
Nicolas Giard
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
12 additions and
0 deletions
-
.github/workflows/build.yml
|
|
@ -358,6 +358,18 @@ jobs: |
|
|
|
env: |
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |
|
|
|
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK |
|
|
|
|
|
|
|
- name: Notify Telegram Channel |
|
|
|
uses: appleboy/telegram-action@0.0.3 |
|
|
|
with: |
|
|
|
to: ${{ secrets.TELEGRAM_TO }} |
|
|
|
token: ${{ secrets.TELEGRAM_TOKEN }} |
|
|
|
format: markdown |
|
|
|
message: | |
|
|
|
Wiki.js **${{ github.ref_name }}** has been released! |
|
|
|
|
|
|
|
See [release notes](https://github.com/requarks/wiki/releases) for details. |
|
|
|
|
|
|
|
|
|
|
|
build-do-image: |
|
|
|
name: Build DigitalOcean Image |
|
|
|