diff --git a/.github/workflows/publish-to-winget-pkgs.yml b/.github/workflows/publish-to-winget-pkgs.yml new file mode 100644 index 00000000000..b08762cc4a9 --- /dev/null +++ b/.github/workflows/publish-to-winget-pkgs.yml @@ -0,0 +1,13 @@ +name: Publish release tags to WinGet +on: + release: + types: [released] +jobs: + publish: + runs-on: windows-latest + steps: + - uses: vedantmgoyal9/winget-releaser@main + with: + identifier: JFrog.Conan + installers-regex: 'conan-.+?-installer\.exe$' # Only the .exe installers + token: ${{ secrets.WINGET_TOKEN }}