diff --git a/.github/workflows/winget-submission.yml b/.github/workflows/winget-submission.yml index 72e87ed7ae..3470fed4e2 100644 --- a/.github/workflows/winget-submission.yml +++ b/.github/workflows/winget-submission.yml @@ -7,7 +7,7 @@ on: inputs: tag_name: description: 'Specific tag name' - required: true + required: true type: string jobs: @@ -20,6 +20,9 @@ jobs: uses: vedantmgoyal2009/winget-releaser@v2 with: identifier: Nushell.Nushell + # Exclude all `*-msvc-full.msi` full release files, + # and only the default `*msvc.msi` files will be included + installers-regex: 'msvc\.msi$' version: ${{ inputs.tag_name || github.event.release.tag_name }} release-tag: ${{ inputs.tag_name || github.event.release.tag_name }} token: ${{ secrets.NUSHELL_PAT }}