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).
This commit is contained in:
Daniel Rainer
2025-09-22 20:07:39 +02:00
committed by Johannes Altmanninger
parent b1d1ef1b6e
commit c8f31ceedb

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