Skip to content

Sync

Sync #67

Workflow file for this run

name: Sync
on:
# Daily at 02:00 UTC
schedule:
- cron: "0 2 * * *"
# Manual trigger
workflow_dispatch:
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Install Python & dependencies
run: uv sync --frozen
- name: Run sync script
env:
TOKEN: ${{ secrets.TOKEN }}
PROFILE: ${{ secrets.PROFILE }}
run: uv run python main.py