From c8f31ceedb3277396f8353adec6e34a9e1f37cda Mon Sep 17 00:00:00 2001 From: Daniel Rainer Date: Mon, 22 Sep 2025 20:07:39 +0200 Subject: [PATCH] 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). --- .github/workflows/release.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 36e3e2c2a..83a0c8841 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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