Skip to content

Build and Deploy Nightly Builds #165

Build and Deploy Nightly Builds

Build and Deploy Nightly Builds #165

name: CI (Nightly)
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