Fix release workflow syntax

The previous version results in an immediate workflow failure due to a
syntax error in the YAML. `workflow_dispatch` should be a dictionary
key, with its value being another dictionary (whose only key is `inputs`
at the moment).

(cherry picked from commit c8f31ceedb)
This commit is contained in:
Daniel Rainer
2025-09-22 20:07:39 +02:00
committed by Johannes Altmanninger
parent b87ef689fa
commit ffa7abd6ff

View File

@@ -1,11 +1,12 @@
name: Create a new release
on: workflow_dispatch
inputs:
version:
description: 'Version to release (tag name)'
required: true
type: string
on:
workflow_dispatch:
inputs:
version:
description: 'Version to release (tag name)'
required: true
type: string
permissions:
contents: write