24 lines
428 B
YAML
24 lines
428 B
YAML
name: Build all
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
# schedule:
|
|
# - cron: "0 1 * * *"
|
|
|
|
jobs:
|
|
ffmpeg-static-debug:
|
|
uses: ./.github/workflows/ffmpeg.yml
|
|
with:
|
|
system: windows-2022
|
|
type: static
|
|
config: debug
|
|
ffmpegRef: release/5.1
|
|
|
|
ffmpeg-static-release:
|
|
uses: ./.github/workflows/ffmpeg.yml
|
|
with:
|
|
system: windows-2022
|
|
type: static
|
|
config: release
|
|
ffmpegRef: release/5.1
|