mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-20 10:31:16 -03:00
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:
committed by
Johannes Altmanninger
parent
b1d1ef1b6e
commit
c8f31ceedb
13
.github/workflows/release.yml
vendored
13
.github/workflows/release.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user