Files
infrastructure/.gitea/workflows/libation-sync.yml
Alex Mickelson b8ac104002
Some checks failed
Apply Kuberentes Configs / update-repo (push) Failing after 0s
Apply Kuberentes Configs / update-infrastructure (push) Has been skipped
Update home server containers / update-repo (push) Failing after 0s
Update home server containers / update-infrastructure (push) Has been skipped
updates to paths
2026-01-27 21:46:44 -07:00

19 lines
554 B
YAML

name: Libation
on:
schedule:
# Run 4 times a day: 6am, 12pm, 6pm, 12am UTC
- cron: '0 6,12,18,0 * * *'
workflow_dispatch: # Allow manual trigger
jobs:
sync-audiobooks:
runs-on: [home-server]
steps:
- name: Run Libation sync
working-directory: /home/gitea-runner/infrastructure/infrastructure/home-server/libation
run: |
echo "Starting Libation audiobook sync at $(date)"
docker compose pull -q
docker compose run --rm libation
echo "Libation sync completed at $(date)"