mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-10-03 08:42:42 +00:00
24 lines
491 B
YAML
24 lines
491 B
YAML
name: Keep cache warm
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 22 1,6,11,16,21,27 * *'
|
|
|
|
jobs:
|
|
build:
|
|
if: |
|
|
vars.KEEP_CACHE_WARM || github.event_name == 'workflow_dispatch'
|
|
uses: ./.github/workflows/build.yml
|
|
with:
|
|
version: '999999'
|
|
channel: stable
|
|
origin: ${{ github.repository }}
|
|
unix: false
|
|
linux: false
|
|
linux_armv7l: true
|
|
musllinux: false
|
|
macos: true
|
|
windows: true
|
|
permissions:
|
|
contents: read
|