mirror of
https://github.com/wgtunnel/android.git
synced 2026-07-03 14:07:49 +02:00
54d9653f04
Fixes a bug where mobile data tunneling was not working properly in certain scenarios. Fixes an issue where the new floating action button was not working correctly on AndroidTV. Improved local logging. Additional refactors and optimizations.
22 lines
681 B
YAML
22 lines
681 B
YAML
name: Release Updates Workflow
|
|
|
|
on:
|
|
release:
|
|
types: [ published ]
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Send Telegram Message
|
|
run: |
|
|
msg_text='${{ github.actor }} published a new release:
|
|
Release: ${{ github.event.release.tag_name }}
|
|
${{ github.event.release.body }}
|
|
https://github.com/zaneschepke/wgtunnel/releases/tag/${{ github.event.release.tag_name }}'
|
|
curl -s -X POST 'https://api.telegram.org/bot${{ secrets.TELEGRAM_TOKEN }}/sendMessage' \
|
|
-d "chat_id=${{ secrets.TELEGRAM_TO }}&text=${msg_text}&message_thread_id=${{ secrets.TELEGRAM_TOPIC }}"
|