aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/winget.yml
blob: eacf230997649c2939b956e5a8e315b2faf49902 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: Publish to WinGet
on:
  release:
    types: [released]

jobs:
  publish:
    runs-on: windows-latest
    steps:
      - uses: vedantmgoyal2009/winget-releaser@v2
        with:
          identifier: PrismLauncher.PrismLauncher
          version: ${{ github.event.release.tag_name }}
          installers-regex: 'PrismLauncher-Windows-MSVC(:?-arm64|-Legacy)?-Setup-.+\.exe$'
          token: ${{ secrets.WINGET_TOKEN }}