-
Notifications
You must be signed in to change notification settings - Fork 4
34 lines (29 loc) · 838 Bytes
/
Copy pathvisual-sync.yml
File metadata and controls
34 lines (29 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Visual Sync Automation
on:
push:
branches:
- main
tags:
- 'v*'
jobs:
analyze-and-sync:
runs-on: ubuntu-latest
if: github.repository == 'KerubinDev/AxionFlow'
steps:
- name: Checkout Code
uses: actions/checkout@v6
with:
fetch-depth: 2 # Necessary to get the previous commit for diff
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.10'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install requests litellm pydantic
- name: Run Visual Sync Analyzer
env:
AXION_API_KEY: ${{ secrets.AXION_API_KEY }}
VISUAL_REPO_TOKEN: ${{ secrets.VISUAL_REPO_TOKEN }}
run: python scripts/visual_sync_analyzer.py