Skip to content

Commit

Permalink
Fix workflow_dispatch trigger for Winget workflow (#1169)
Browse files Browse the repository at this point in the history
  • Loading branch information
sitiom authored Jun 17, 2024
1 parent 49e54f5 commit 27061eb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/winget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ on:
release:
types: [released]
workflow_dispatch:
inputs:
tag_name:
description: 'Tag name of release'
required: true
type: string

jobs:
publish:
Expand All @@ -13,4 +18,4 @@ jobs:
identifier: epi052.feroxbuster
installers-regex: '-windows-feroxbuster\.exe\.zip$'
token: ${{ secrets.WINGET_TOKEN }}
version: "2.10.4"
release-tag: ${{ inputs.tag_name || github.event.release.tag_name || github.ref_name }}

0 comments on commit 27061eb

Please sign in to comment.