fix(ci): fix yaml formatting in workflow heredocs

This commit is contained in:
quotentiroler
2026-02-06 15:52:38 -08:00
parent 4f07791455
commit 845eafaacb
12 changed files with 184 additions and 207 deletions

View File

@@ -4,23 +4,23 @@ name: Release
#
# Branch → Release Type mapping:
# alpha → releases from 'alpha' branch with -alpha.N suffix
# beta → releases from 'beta' branch with -beta.N suffix
# beta → releases from 'beta' branch with -beta.N suffix
# stable → releases from 'main' branch with YYYY.M.D version
on:
workflow_dispatch:
inputs:
release_type:
description: 'Release type'
description: "Release type"
required: true
type: choice
options:
- alpha
- beta
- stable
default: 'alpha'
default: "alpha"
dry_run:
description: 'Dry run (no publish)'
description: "Dry run (no publish)"
required: false
type: boolean
default: false