获取V2ray订阅 #9497
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: 获取V2ray订阅 | |
on: | |
schedule: | |
- cron: '0 */2 * * *' | |
workflow_dispatch: | |
jobs: | |
get_v2ray: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: 'Set up Python' | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.11 | |
- name: 'Install requests' | |
run: | | |
pip install -r requirements.txt | |
- name: 设置githup信息 | |
env: | |
email: ${{ secrets.EMAIL }} | |
username: ${{ secrets.USERNAME }} | |
run: | | |
git config --global user.name "$username" | |
git config --global user.email "$email" | |
- name: Run python script | |
run: | | |
python3 get_clash.py | |
- name: commit | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Actions" | |
git pull origin main | |
git add ./pub/* | |
git commit -m "$(date '+%Y-%m-%d %H:%M:%S')筛选节点" | |
- name: 推送更改 | |
uses: ad-m/github-push-action@master | |
with: | |
# github_token: ${{ secrets.TOKEN }} | |
branch: main |