mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-19 10:20:17 -06:00
27 lines
509 B
YAML
27 lines
509 B
YAML
name: Build and Deploy Nightly Builds
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *' # Every day at midnight UTC
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build-macos:
|
|
uses: ./.github/workflows/build-macos.yml
|
|
secrets: inherit
|
|
with:
|
|
NIGHTLY: true
|
|
|
|
build-windows:
|
|
uses: ./.github/workflows/build-windows.yml
|
|
secrets: inherit
|
|
with:
|
|
NIGHTLY: true
|
|
|
|
release:
|
|
needs: [build-macos, build-windows]
|
|
uses: ./.github/workflows/release.yml
|
|
secrets: inherit
|
|
with:
|
|
NIGHTLY: true
|