Skip to content

Update Xray core API #8

Update Xray core API

Update Xray core API #8

name: Update Xray core API
on:
workflow_dispatch:
jobs:
Update_Xray_core_API:
name: Update Xray core API
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Download Xray API
run: |
python download-proto-files.py
- name: Commit and Push Changes
run: |
git config --local user.email "actions@github.com"
git config --local user.name "GitHub Actions"
git add .
git commit -m "update: update xray core api"
git push