mirror of
https://github.com/enso-org/enso.git
synced 2024-12-20 20:51:41 +03:00
28946182c2
followup #11517 It turned out that `env` context is not available in the `jobs.<job-id>.with` key.
28 lines
675 B
YAML
28 lines
675 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
|
|
jobs:
|
|
promote-nightly:
|
|
name: Promote nightly
|
|
uses: ./.github/workflows/promote.yml
|
|
with:
|
|
designator: nightly
|
|
ydoc: ${{ inputs.ydoc || 'nodejs' }}
|
|
secrets: inherit
|
|
env:
|
|
ENSO_BUILD_SKIP_VERSION_CHECK: "true"
|