enso/.github/workflows/nightly.yml
Dmitry Bushev 2e6d4b2695
Fix scheduled nightly release (#11675)
Followup to #11517

Fixes the scheduled dispatch of Nightly Release workflow. The scheduled dispatch requires the `workflow_call` section specifying the inputs.
2024-11-27 11:38:34 +00:00

35 lines
828 B
YAML

# This file is auto-generated. Do not edit it manually!
# Edit the enso_build::ci_gen module instead and run `cargo run --package enso-build-ci-gen`.
name: Nightly Release
on:
schedule:
- cron: 0 2 * * *
workflow_dispatch:
inputs:
ydoc:
description: What kind of Ydoc image to build.
required: false
type: choice
default: nodejs
options:
- nodejs
- polyglot
workflow_call:
inputs:
ydoc:
description: What kind of Ydoc image to build.
required: false
type: string
default: nodejs
jobs:
promote-nightly:
name: Promote nightly
uses: ./.github/workflows/promote.yml
with:
designator: nightly
ydoc: ${{ inputs.ydoc }}
secrets: inherit
env:
ENSO_BUILD_SKIP_VERSION_CHECK: "true"