From 7e609a0ef6b89a6b977fef24554615285f915add Mon Sep 17 00:00:00 2001 From: Dave Lane <42013603+ReenigneArcher@users.noreply.github.com> Date: Thu, 2 Jul 2026 09:05:19 -0400 Subject: [PATCH] fix(update-winget-repo): match more windows installer types Updated fileName and installers-regex to support multiple installer formats. --- .github/workflows/__call-update-winget-repo.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/__call-update-winget-repo.yml b/.github/workflows/__call-update-winget-repo.yml index c64d16c7..ec3ee7d8 100644 --- a/.github/workflows/__call-update-winget-repo.yml +++ b/.github/workflows/__call-update-winget-repo.yml @@ -59,7 +59,7 @@ jobs: with: repository: "${{ github.repository }}" tag: "${{ github.event.release.tag_name }}" - fileName: "*.exe" + fileName: "*.{exe,msi,msix,appx,msixbundle,appxbundle}" # this action uses minimatch tarBall: false zipBall: false out-file-path: "release_downloads" @@ -74,5 +74,4 @@ jobs: with: identifier: "${{ github.repository_owner }}.${{ github.event.repository.name }}" release-tag: ${{ github.event.release.tag_name }} - installers-regex: '\.exe$' token: ${{ secrets.GH_TOKEN }}