示例,并没有在维护 #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: TG推送 | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'addressesapi.txt' | |
workflow_dispatch: # 手动触发 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 加载当前的 GitHub 库 | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Get Beijing Time | |
id: time | |
run: | | |
TIME_ZONE="Asia/Shanghai" | |
CURRENT_TIME=$(TZ=${TIME_ZONE} date +"%Y-%m-%d %H:%M:%S") | |
echo "::set-output name=current_time::${CURRENT_TIME}" | |
- name: 执行推送 | |
run: | | |
head -n 9 addressesapi.txt > addressesapi_truncated.txt | |
while IFS= read -r line; do | |
ips+="$(echo "$line" | sed 's/#/, /g')"$'\n' | |
done < addressesapi_truncated.txt | |
message="今日优选 For: ${{ steps.time.outputs.current_time }} | |
${ips}......更多优选IP可通过自定义订阅方式获取 | |
https://sub.cmliucdn.tk/sub?host=[你的Vless域名]%26uuid=[你的UUID]%26path=[你的ws路径] | |
如果你的vless是通过worker部署且没有path参数,可填入参数后订阅节点信息 | |
https://sub.cmliucdn.tk/sub?host=[你的Worker域名]%26uuid=[你的UUID] | |
实际使用时请去掉[ ]符号,Worker域名优先使用自定义域 | |
注意:您可以将此链接分享传播到任何地方😁顺便给3Kmfi6HP大佬敬个礼" | |
# wget -qO- "https://api.telegram.org/bot${{ secrets.TG_BOT_TOKEN }}/sendMessage?chat_id=${{ secrets.TG_TESTPD_ID }}&text=$message" | |
curl -X POST -H "Content-Type: application/x-www-form-urlencoded" \ | |
-d "chat_id=${{ secrets.TG_PD_ID }}" \ | |
-d "text=${message}" \ | |
"https://api.telegram.org/bot${{ secrets.TG_BOT_TOKEN }}/sendMessage" | |