mirror of
https://github.com/enso-org/enso.git
synced 2024-12-19 21:12:17 +03:00
2e6d4b2695
Followup to #11517 Fixes the scheduled dispatch of Nightly Release workflow. The scheduled dispatch requires the `workflow_call` section specifying the inputs.
35 lines
828 B
YAML
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"
|