Skip to content

Commit

Permalink
Fix: winget-releaser gets correct identifier (#561)
Browse files Browse the repository at this point in the history
🤦‍♂️ missed that this was a placeholder
  • Loading branch information
ruben-arts authored Dec 11, 2023
1 parent 40aa081 commit b4a0f5c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,19 @@ name: Publish to WinGet
on:
release:
types: [released]
workflow_dispatch:
inputs:
tag_name:
description: 'Specific tag name'
required: true
type: string
jobs:
publish:
runs-on: windows-latest
steps:
- uses: vedantmgoyal2009/winget-releaser@v2
with:
identifier: Package.Identifier
identifier: prefix-dev.pixi
installers-regex: '\.msi' # Only .msi files
token: ${{ secrets.WINGET_TOKEN }}
release-tag: ${{ inputs.tag_name || github.event.release.tag_name }}

0 comments on commit b4a0f5c

Please sign in to comment.